Files
game-ideas/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs
2025-04-09 20:30:44 +02:00

17 lines
353 B
C#

namespace GameIdeas.Shared.Model;
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; }
}