main
1namespace common
2{
3    public interface Command
4    {
5        void run();
6    }
7}