Add entity framework #11

Merged
Egamorf merged 7 commits from release/entity-framework into main 2025-04-09 23:12:48 +02:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit 6627dc93be - Show all commits

View File

@@ -4,6 +4,7 @@ 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!;

View File

@@ -9,7 +9,6 @@ public partial class Platform
public int Id { get; set; }
public string Libelle { get; set; } = null!;
public string? Url { get; set; }
public virtual ICollection<GamePlatform> GamePlatforms { get; set; }