using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tiger.Model.Sharetronic.Shelf; namespace Tiger.Model { public class LightEntityInput { public AuthOption AuthOption { get; set; } public ReqType ReqType { get; set; } public LedColor Color { get; set; } public string ItemCode { get; set; } } public class CountLightEntity { public AuthOption AuthOption { get; set; } public ReqType ReqType { get; set; } public LedColor Color { get; set; } public string ItemCode { get; set; } public string ShelfCode { get; set; } } /// /// /// public class CountOutput { public string CountNo { get; set; } public string SN { get; set; } public string ItemCode { get; set; } public string ItemName { get; set; } public string ItemDesc { get; set; } public double Qty { get; set; } public string regionCode { get; set; } public string locationCode { get; set; } public string Unit { get; set; } public string Status { get; set; } public List Shelfs { get; set; } } public class LightEntityInputs { public AuthOption AuthOption { get; set; } public ReqType ReqType { get; set; } public LedColor Color { get; set; } public List ItemCodes { get; set; } } }