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