30 lines
459 B
C#
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; }
|
|
|
|
|
|
} |