mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-16 04:59:37 +08:00
21 lines
493 B
C#
21 lines
493 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|