You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
namespace WMS_GIRAF_Interface.Models;
|
|
|
|
public class GetStockList
|
|
{
|
|
|
|
public class RootObjectForGetStock
|
|
{
|
|
public List<StockInfo> stockInfos { get; set; }
|
|
}
|
|
|
|
public class StockInfo
|
|
{
|
|
public string? sku { get; set; }
|
|
public string? storageAddress { get; set; }
|
|
public SupportS support { get; set; }
|
|
public ProductForGetStock[] products { get; set; }
|
|
public bool? IsAccessible { get; set; }
|
|
}
|
|
|
|
public class SupportS
|
|
{
|
|
public string? type { get; set; }
|
|
public string? identifier { get; set; }
|
|
public bool? IsBlocked { get; set; }
|
|
}
|
|
|
|
public class ProductForGetStock
|
|
{
|
|
public string identifier { get; set; }
|
|
public bool? isBlocked { get; set; }
|
|
public bool? isPriority { get; set; }
|
|
public string productClass { get; set; }
|
|
public DateTime? fabricationDate { get; set; }
|
|
public DateTime? maturationDate { get; set; }
|
|
public DateTime? expirationDate { get; set; }
|
|
public DateTime? highPriorityDate { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|