17 lines
353 B
C#
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; }
|
|
|
|
}
|