using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Common { public class ViewLocation { public int MaxRow { get; set; } public int MaxCol { get; set; } public string Direction { get; set; } public string Title { get; set; } public int Width { get; set; } public int Height { get; set; } public int Top { get; set; } public int Left { get; set; } public string Style { get; set; } public int ColWidth { get; set; } public int ColHeight { get; set; } public List ViewLocationRow { get; set; } } public class ViewLocationRow { public List ViewLocationCol { get; set; } } public class ViewLocationCol { public bool Exists { get; set; } public string Location { get; set; } public string State { get; set; } public string UseState { get; set; } public string Color { get; set; } public string Row { get; set; } public string Col { get; set; } public string Style { get; set; } public bool IsCheck { get; set; } } }