You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
990 B
C#

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; }
}
}