1namespace mars.rover.common 2{ 3 public interface ParameterizedCommand<T> 4 { 5 void run_against(T item); 6 } 7}