Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs

12 lines
200 B
C#
Raw Normal View History

2018-10-05 00:18:37 +02:00
using System;
namespace LaDOSE.Entity
{
public class Game
{
public int Id { get; set; }
public string Name { get; set; }
public string ImgUrl { get; set; }
}
}