using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { public class TreeNodeStrModel { public string id { set; get; } /// /// /// public string name { set; get; } public string code { set; get; } public string iconOpen { set; get; } public string iconClose { set; get; } public string open { set; get; } public bool Checked { set; get; } private List _children; public List children { set { _children = value; } get { return _children; } } } }