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 Genres { get; set; } } }