Add models

This commit is contained in:
2025-04-09 20:30:44 +02:00
parent cb60f3de31
commit e82e412c18
11 changed files with 137 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
namespace GameIdeas.Shared.Model;
public partial class Property
{
public Property()
{
GameProperties = new HashSet<GameProperty>();
}
public int Id { get; set; }
public string Label { get; set; } = null!;
public virtual ICollection<GameProperty> GameProperties { get; set; }
}