IOutputOptions.cs 231 B

12345678910
  1. using CommandLine;
  2. namespace ArcToolkitCLI.Commands.Options
  3. {
  4. internal interface IOutputOptions
  5. {
  6. [Option('o', "output", HelpText = "Output directory", Default = ".")]
  7. string Output { get; set; }
  8. }
  9. }