Implemented category feature
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace LiteCharms.Features.MidrandBooks.Categories.Models;
|
||||
|
||||
public class Category
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public bool IsMain { get; set; }
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user