12 lines
253 B
C#
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; }
|
|
}
|
|
}
|