9 lines
219 B
C#
9 lines
219 B
C#
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; } = [];
|
|
} |