diff --git a/src/GameIdeas/GameIdeas.Shared/Model/GamePlatform.cs b/src/GameIdeas/GameIdeas.Shared/Model/GamePlatform.cs index b2eb056..cbf4609 100644 --- a/src/GameIdeas/GameIdeas.Shared/Model/GamePlatform.cs +++ b/src/GameIdeas/GameIdeas.Shared/Model/GamePlatform.cs @@ -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!; diff --git a/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs b/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs index af045aa..a4c643c 100644 --- a/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs +++ b/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs @@ -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 GamePlatforms { get; set; }