12 lines
302 B
C#
12 lines
302 B
C#
namespace GameIdeas.Shared.Model;
|
|
|
|
public partial class GamePlatform
|
|
{
|
|
public int GameId { get; set; }
|
|
public int PlatformId { get; set; }
|
|
public string? Url { get; set; }
|
|
|
|
public virtual Game Game { get; set; } = null!;
|
|
public virtual Platform Platform { get; set; } = null!;
|
|
}
|