feat: basic database model

This commit is contained in:
2025-07-14 12:26:27 +02:00
parent e87c653fae
commit 5e2e70b415
12 changed files with 575 additions and 1 deletions

8
Entities/Category.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace QuotifyBE.Entities
{
public class Category
{
public int Id { get; set; }
public string? Name { get; set; }
}
}