8 lines
206 B
C#
8 lines
206 B
C#
namespace Kafka.Lib.Warehouse.Model;
|
|
|
|
public class InventoryModel
|
|
{
|
|
public string? ItemId { get; set; }
|
|
public string? InventoryId { get; set; }
|
|
public string? Position { get; set; }
|
|
} |