using System;
using System.ComponentModel.DataAnnotations;
namespace StarsAssistant.Model;
public class Game
{
///
/// Dummy primary key, normally not used, but makes working with EF easier.
///
public int GameId { get; set; }
///
/// The base path in which all game files reside.
///
public string GamePath { get; set; } = String.Empty;
///
/// The base name without extensions of your game, inside the GamePath folder.
/// All dependant files are resolved using this name.
///
public string BaseName { get; set; } = String.Empty;
}