using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Collections; namespace Estsh.Core.Util { public class TreeNode { public String id { get; set; } public String parentId { get; set; } public String oldParentId { get; set; } public Boolean isParent { get; set; } public String name { get; set; } public Boolean open { get; set; } public String url { get; set; } public String target { get; set; } public String iconClose { get; set; } public String iconOpen { get; set; } public String icon { get; set; } public String iconSkin { get; set; } public Boolean nocheck { get; set; } public Boolean nodeChecked { get; set; } public Boolean chkDisabled { get; set; } public Boolean drop { get; set; } public Boolean drag { get; set; } public String tabUrl { get; set; } } }