move platform url
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 31s
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 31s
This commit is contained in:
@@ -4,6 +4,7 @@ public partial class GamePlatform
|
|||||||
{
|
{
|
||||||
public int GameId { get; set; }
|
public int GameId { get; set; }
|
||||||
public int PlatformId { get; set; }
|
public int PlatformId { get; set; }
|
||||||
|
public string? Url { get; set; }
|
||||||
|
|
||||||
public virtual Game Game { get; set; } = null!;
|
public virtual Game Game { get; set; } = null!;
|
||||||
public virtual Platform Platform { get; set; } = null!;
|
public virtual Platform Platform { get; set; } = null!;
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ public partial class Platform
|
|||||||
|
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public string Libelle { get; set; } = null!;
|
public string Libelle { get; set; } = null!;
|
||||||
public string? Url { get; set; }
|
|
||||||
|
|
||||||
public virtual ICollection<GamePlatform> GamePlatforms { get; set; }
|
public virtual ICollection<GamePlatform> GamePlatforms { get; set; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user