KalkulatorISP-31rrrrr/source/repos/WinFormsApp4/Models/Game.cs
2025-11-11 14:18:33 +04:00

18 lines
338 B
C#

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; }
}