Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
2018-10-05 00:18:37 +02:00

12 lines
200 B
C#

using System;
namespace LaDOSE.Entity
{
public class Game
{
public int Id { get; set; }
public string Name { get; set; }
public string ImgUrl { get; set; }
}
}