mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
18 lines
488 B
C#
18 lines
488 B
C#
namespace HatariZipLauncher
|
|
{
|
|
// 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; }
|
|
}
|
|
}
|