Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
Darkstack 6f682df13a Html Generator (Added CefSharp / Chrome)
Updated Result API with Tournament Urls
Updated Setup
2019-06-02 17:19:28 +02:00

19 lines
568 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 LongName { 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; }
}
}