using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FangYar.Model { public class TreeNodeModel { public string id { get; set; } public string pId { get; set; } public string icon { get; set; } public string name { get; set; } public bool open { get; set; } public bool isParent { get; set; } public object extend { get; set; } public object chkDisabled { get; set; } public List childs { get; set; } } }