namespace CLI; public class Options { public string? CustomRuntime { get; set; } public string? OutputPath { get; set; } public bool Link { get; set; } = true; public List Files { get; } = []; }