| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 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<ComboTree> 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<VarietyCategoryTreeModel> children { get; set; }    }}
 |