jtr/DevDisciples.Json.Tools.CLI/CommandOptions.cs
2024-09-15 17:23:27 +02:00

10 lines
308 B
C#

namespace DevDisciples.Json.Tools.CLI;
public class CommandOptions
{
public InputOptions Input { get; set; }
public FileInfo? InputFile { get; set; }
public string? InputArgument { get; set; }
public OutputOptions Output { get; set; }
public FileInfo? OutputFile { get; set; }
}