using System; namespace Admin.Core.Service.Admin.Role.Output { public class RoleListOutput { /// /// 主键 /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 启用 /// public bool Enabled { get; set; } /// /// 创建时间 /// public DateTime? CreatedTime { get; set; } } }