move platform url
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 31s

This commit is contained in:
2025-04-09 21:43:06 +02:00
parent 749146c8c4
commit 6627dc93be
2 changed files with 1 additions and 1 deletions

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; }