2019-02-26 01:26:03 +01:00
|
|
|
|
namespace LaDOSE.DTO
|
|
|
|
|
|
{
|
2019-03-12 22:23:38 +01:00
|
|
|
|
public class GameDTO
|
2024-03-22 23:58:43 +01:00
|
|
|
|
{
|
2019-02-26 01:26:03 +01:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
2019-06-02 17:19:28 +02:00
|
|
|
|
public string LongName { get; set; }
|
2019-03-16 12:22:52 +01:00
|
|
|
|
public int Order { get; set; }
|
2019-02-26 01:26:03 +01:00
|
|
|
|
public string ImgUrl { get; set; }
|
2019-03-09 14:03:25 +01:00
|
|
|
|
public string WordPressTag { get; set; }
|
|
|
|
|
|
public string WordPressTagOs { get; set; }
|
2022-07-30 14:41:57 +02:00
|
|
|
|
public int? SmashId { get; set; }
|
2019-02-26 01:26:03 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|