1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace TestMenu
7 {
8 public interface ActionBase
9 {
10 void Execute();
11 }
12 }