GameLibrary/Models/Game.cs

12 lines
277 B
C#
Raw Normal View History

2024-10-03 14:22:21 +05:00
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; }
}
}