using System.ComponentModel.DataAnnotations.Schema; namespace WMS_GIRAF_Interface.Models; public class GetStockListModel { public string STOCK_BARCODE { get; set; } public string? LOTNUMBER { get; set; } public string? CELL_CODE { get; set; } public string? CELL_MODEL { get; set; } public string? supportIdentifier { get; set; } public bool? supportIsBlocked { get; set; } public bool? IsBlocked { get; set; } public bool? IsPriority { get; set; } public string? PopulationNumber { get; set; } public DateTime? DryDateTimeInUtc { get; set; } public DateTime? DryDateTimeInLoc { get; set; } public DateTime? OldDateTimeInUtc { get; set; } public DateTime? OldDateTimeInLoc { get; set; } public DateTime? HdvDateTimeInUtc { get; set; } public DateTime? HdvDateTimeInLoc { get; set; } public DateTime? FabricationDateTimeInUtc { get; set; } public DateTime? FabricationDateTimeInLoc { get; set; } public int? IsAccessible { get; set; } }