18 lines
338 B
C#
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; }
|
|
}
|