main
1namespace gorilla.commons.utility
2{
3 public interface Callback : Command
4 {
5 }
6
7 public interface Callback<T> : Command<T>
8 {
9 }
10}