namespace StopShopping.Services.Models.Resp; public record Category { public int Id { get; set; } public int ParentId { get; set; } public string Name { get; set; } = string.Empty; /// /// logo地址 /// /// public string LogoUrl { get; set; } = string.Empty; /// /// 层级中序号 /// /// public int Order { get; set; } /// /// 下级分类列表 /// /// public List Children { get; set; } = []; }