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