1namespace gorilla.migrations 2{ 3 public interface ConsoleCommand : ParameterizedCommand<ConsoleArguments> 4 { 5 bool can_handle(ConsoleArguments arguments); 6 } 7}