using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace GSMarketSys.Controllers { public class ComboTree { public string id { get; set; } public string text { get; set; } public string state { get; set; } = null; //public bool @checked { get; set; } public List children { get; set; } } public class SelectItem { public string id { get; set; } public string text { get; set; } } public class VarietyCategoryTreeModel { public string VarietyCategoryNo { get; set; } public string VarietyCategoryName { get; set; } public string CountryNo { get; set; } public string ProvincialNo { get; set; } public string LocalNo { get; set; } public string IsMajorCost { get; set; } public string IsMajorSrc { get; set; } public string IsCanChecked { get; set; } public string Depth { get; set; } public string Path { get; set; } public string IsLeaf { get; set; } public string state { get; set; } = null; public List children { get; set; } } }