OpenAuth.Net/OpenAuth.Mvc/WebCtrls/GridTree/TreeGridEntity.cs

21 lines
493 B
C#
Raw Normal View History

2017-01-12 19:24:52 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LeaRun.Util.WebControl
{
/// <summary>
/// 树表格实体
/// </summary>
public class TreeGridEntity
{
public string parentId { get; set; }
public string id { get; set; }
public string text { get; set; }
public string entityJson { get; set; }
public bool expanded { get; set; }
public bool hasChildren { get; set; }
}
}