This commit is contained in:
nub31
2025-06-29 17:40:17 +02:00
parent 2b40612f1b
commit edbab69c00
5 changed files with 83 additions and 24 deletions

View File

@@ -3,4 +3,7 @@ namespace CLI;
public class Options
{
public string? CustomRuntime { get; set; }
public string? OutputPath { get; set; }
public bool Link { get; set; } = true;
public List<string> Files { get; } = [];
}