using System.ComponentModel; namespace QYZH.InteractiveMagazine.Models.Dto.SystemManagement; /// /// 枚举信息输出 /// public class EnumInfoOutput { /// /// 枚举名称 /// public string EnumName { get; set; } = string.Empty; /// /// 枚举项列表 /// public List Items { get; set; } = new(); } /// /// 枚举项 /// public class EnumItemDto { /// /// 枚举项名称 /// public string Name { get; set; } = string.Empty; /// /// 枚举项值 /// public int Value { get; set; } /// /// 描述 /// public string? Description { get; set; } }