Add models

This commit is contained in:
2025-04-09 20:30:44 +02:00
parent cb60f3de31
commit e82e412c18
11 changed files with 137 additions and 1 deletions

View File

@@ -2,7 +2,15 @@
public partial class Platform
{
public Platform()
{
GamePlatforms = new HashSet<GamePlatform>();
}
public int Id { get; set; }
public string Libelle { get; set; } = null!;
public string? Url { get; set; }
public virtual ICollection<GamePlatform> GamePlatforms { get; set; }
}