move all files

This commit is contained in:
2026-08-10 21:45:47 +02:00
parent 94b4ed7fb3
commit 26d3530b86
24 changed files with 47 additions and 48 deletions
@@ -0,0 +1,17 @@
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; }
}
}