mh_sms/APT.BaseData.Domain/ApiModel/Platform/TreeDataModel.cs
2024-04-12 16:50:28 +08:00

20 lines
406 B
C#

using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel.Platform
{
/// <summary>
/// 树形控件实体
/// </summary>
public class TreeDataModel
{
public string key { get; set; }
public string title { get; set; }
/// <summary>
/// 子节点
/// </summary>
public List<TreeDataModel> children { get; set; }
}
}