CloudGamingAdmin/admin-server/CloudGaming.Api.Admin/Models/Dtos/Systems/SysDictionaryTreeDto.cs
2024-11-15 02:58:48 +08:00

30 lines
459 B
C#

namespace CloudGaming.Api.Admin.Models.Dtos.Systems;
public class SysDictionaryTreeDto : SysDictionary
{
public int Key
{
get
{
return Id;
}
}
public string? Title
{
get
{
return Name;
}
}
public List<SysDictionaryTreeDto> Children { get; set; }
/// <summary>
/// 父级名称
/// </summary>
public string? ParentName { get; set; }
}