feat:Initial commit
This commit is contained in:
17
StoreService/Database/Entities/StoreCategory.cs
Normal file
17
StoreService/Database/Entities/StoreCategory.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace StoreService.Database.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// Category grouping store items.
|
||||
/// </summary>
|
||||
public class StoreCategory
|
||||
{
|
||||
#region Properties
|
||||
public long Id { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
#endregion
|
||||
|
||||
#region Navigation
|
||||
public ICollection<StoreItem> Items { get; set; } = new List<StoreItem>();
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user