namespace GameIdeas.Shared.Model; public partial class Platform { public Platform() { GamePlatforms = new HashSet(); } public int Id { get; set; } public string Libelle { get; set; } = null!; public string? Url { get; set; } public virtual ICollection GamePlatforms { get; set; } }