All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 31s
16 lines
316 B
C#
16 lines
316 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 virtual ICollection<GamePlatform> GamePlatforms { get; set; }
|
|
|
|
}
|