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