d_sms_service/APT.BaseData.Domain/ApiModel/Platform/TreeDataModel.cs

20 lines
406 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
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; }
}
}