feat:Initial commit

This commit is contained in:
elar1s
2025-09-25 22:21:41 +03:00
commit 02934b1fd9
35 changed files with 1267 additions and 0 deletions

View 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
}