namespace Easy.Admin.Application.Blog.Dtos; public class AddCategoryInput { /// /// 栏目名称 /// [MaxLength(32, ErrorMessage = "栏目名称限制32个字符内")] public string Name { get; set; } /// /// 父级id /// public long? ParentId { get; set; } /// /// 封面图 /// [MaxLength(256)] public string Cover { get; set; } /// /// 可用状态 /// public AvailabilityStatus Status { get; set; } /// /// 排序值(值越小越靠前) /// public int Sort { get; set; } /// /// 备注 /// [MaxLength(200, ErrorMessage = "备注限制200个字符内")] public string Remark { get; set; } }