Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
Darkstack 63db02d798 Test Connection
Add Todo
Bot use Webservice now
TBD : Rework Event
2019-03-27 00:37:11 +01:00

18 lines
523 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity
{
public class Game : Context.Entity
{
public string Name { get; set; }
public string ImgUrl { get; set; }
public int Order { get; set; }
public string WordPressTag { get; set; }
public string WordPressTagOs { get; set; }
public virtual IEnumerable<SeasonGame> Seasons { get; set; }
public virtual IEnumerable<EventGame> Events { get; set; }
}
}