Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs

17 lines
363 B
C#
Raw Normal View History

2018-10-05 00:18:37 +02:00
using System;
2018-10-06 14:16:42 +02:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2018-10-05 00:18:37 +02:00
namespace LaDOSE.Entity
{
public class Game
{
2018-10-06 14:16:42 +02:00
[Key]
2018-10-05 00:18:37 +02:00
public int Id { get; set; }
public string Name { get; set; }
public string ImgUrl { get; set; }
2018-10-06 14:16:42 +02:00
public virtual IEnumerable<SeasonGame> Seasons { get; set; }
2018-10-05 00:18:37 +02:00
}
}