12 lines
277 B
C#
12 lines
277 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace GameLibrary.Models
|
|||
|
{
|
|||
|
public class Game
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
public string Developer { get; set; }
|
|||
|
public List<string> Genres { get; set; }
|
|||
|
}
|
|||
|
}
|