using System; using System.Collections.Generic; namespace WinFormsApp4.Models; public partial class Game { public int GameId { get; set; } public string Title { get; set; } = null!; public string Genre { get; set; } = null!; public string Developer { get; set; } = null!; public decimal Price { get; set; } }