12 lines
200 B
C#
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; }
|
|
}
|
|
}
|