Files
marcer-gamedvd-launcher/MarcerGameDvdLauncher/AppConfiguration.cs
T
2026-08-10 20:20:27 +02:00

18 lines
492 B
C#

namespace MarcerGameDvdLauncher
{
// Configuration POCOs separated into their own file for clarity
public class AppHatariConfig
{
public string? Executable { get; set; }
public string? ConfigFile { get; set; }
public string? ArgsTemplate { get; set; }
}
public class AppConfig
{
public string? RootDirectory { get; set; }
public string? PatchDirectory { get; set; }
public AppHatariConfig? Hatari { get; set; }
}
}