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

13 lines
368 B
C#

namespace LaDOSE.DTO
{
public class GameDTO
{
public int Id { get; set; }
public string Name { get; set; }
public string LongName { get; set; }
public int Order { get; set; }
public string ImgUrl { get; set; }
public string WordPressTag { get; set; }
public string WordPressTagOs { get; set; }
}
}