ICommand.cs 100 B

1234567
  1. namespace ArcToolkitCLI.Commands
  2. {
  3. public interface ICommand
  4. {
  5. int Run();
  6. }
  7. }