main
 1namespace jive
 2{
 3  public interface Command
 4  {
 5    void run();
 6  }
 7
 8  public interface Command<in T>
 9  {
10    void run(T item);
11  }
12}