using System.ComponentModel.DataAnnotations; namespace StopShopping.Services.Models.Req; /// /// 新增/修改分类 /// /// public record EditCategoryParams { /// /// 大于0时修改 /// /// public int? Id { get; set; } /// /// 顶级为0 /// /// public int ParentId { get; set; } /// /// 名称j /// /// [Required] [MaxLength(50)] public string Name { get; set; } = string.Empty; /// /// 空时保持不变 /// /// [MaxLength(50)] public string? Logo { get; set; } }