Files
game-ideas/src/GameIdeas/GameIdeas.Shared/Model/Platform.cs
Egamorf 6627dc93be
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 31s
move platform url
2025-04-09 21:43:06 +02:00

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; }
}