namespace CloudGaming.Api.Admin.Models.Dtos.Systems; /// /// 字典 /// public class SysDictionaryDto { /// /// 唯一编码 /// public int Key { get; set; } /// /// 字典编码 /// public string? Code { get; set; } /// /// 字典显示名称 /// public string? Name { get; set; } /// /// 字典值 /// public string? Value { get; set; } /// /// 父级 /// public int? ParentId { get; set; } /// /// 排序号 /// public int Sort { get; set; } }