Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/GameDTO.cs

14 lines
410 B
C#
Raw Normal View History

namespace LaDOSE.DTO
{
2019-03-12 22:23:38 +01:00
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; }
2019-03-09 14:03:25 +01:00
public string WordPressTag { get; set; }
public string WordPressTagOs { get; set; }
public int? SmashId { get; set; }
}
}