namespace WMS_GIRAF_Interface.Models; public class GetStockList { public class RootObjectForGetStock { public List 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; } } }