using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WMS.Info { public class EmptyTrayRequest { public string LocationNo { get; set; } public bool IsBonded { get; set; } } public class EmptyTrayRequestDto : EmptyTrayRequest { public bool IsGroup { get; set; } } public class WcsEmptyTrayRequest { public string LocationNo { get; set; } public bool IsBonded { get; set; } public int OutOrIn { get; set; } public List Layer { get; set; } } }