Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/Game.cs

11 lines
281 B
C#
Raw Normal View History

namespace LaDOSE.DTO
{
public class Game
{
public int Id { get; set; }
public string Name { 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; }
}
}