Add entity framework (#11)

Co-authored-by: Maxime Adler <madler@sqli.com>
Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2025-04-09 23:12:48 +02:00
parent 3d5056ce91
commit 3537465588
22 changed files with 1617 additions and 38 deletions

View File

@@ -0,0 +1,11 @@
namespace GameIdeas.Shared.Model;
public partial class GamePlatform
{
public int GameId { get; set; }
public int PlatformId { get; set; }
public string? Url { get; set; }
public virtual Game Game { get; set; } = null!;
public virtual Platform Platform { get; set; } = null!;
}