All checks were successful
Run the JSON parser tests / test (push) Has been skipped
10 lines
293 B
C#
10 lines
293 B
C#
namespace Jtr.Tools.CLI;
|
|
|
|
public class CommandOptions
|
|
{
|
|
public InputSource Input { get; set; }
|
|
public FileInfo? InputFile { get; set; }
|
|
public string? InputArgument { get; set; }
|
|
public OutputOptions Output { get; set; }
|
|
public FileInfo? OutputFile { get; set; }
|
|
} |