Files
2025-12-02 13:10:10 +08:00

12 lines
253 B
C#

using Atomx.Common.Entities;
namespace Atomx.Admin.Client.Models
{
public class CategoryItem : Category
{
public List<CategoryItem> Children { get; set; } = new List<CategoryItem>();
public bool IsLast { get; set; }
}
}