1namespace jive 2{ 3 public interface Callback : Command 4 { 5 } 6 7 public interface Callback<in T> : Command<T> 8 { 9 } 10}