12 lines
323 B
C#
12 lines
323 B
C#
namespace LaDOSE.DTO
|
|
{
|
|
public class GameDTO
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Order { get; set; }
|
|
public string ImgUrl { get; set; }
|
|
public string WordPressTag { get; set; }
|
|
public string WordPressTagOs { get; set; }
|
|
}
|
|
} |