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 Children { get; set; } /// /// 父级名称 /// public string? ParentName { get; set; } }