Files
game-ideas/src/GameIdeas/GameIdeas.Shared/Model/GamePlatform.cs
Egamorf 3537465588 Add entity framework (#11)
Co-authored-by: Maxime Adler <madler@sqli.com>
Reviewed-on: #11
2025-04-09 23:12:48 +02:00

12 lines
302 B
C#

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