IInputOptions.cs 267 B

1234567891011
  1. using System.Collections.Generic;
  2. using CommandLine;
  3. namespace ArcToolkitCLI.Commands.Options
  4. {
  5. internal interface IInputOptions
  6. {
  7. [Value(0, MetaName = "input", HelpText = "Input ARC files")]
  8. IEnumerable<string> Input { get; set; }
  9. }
  10. }