main
1using System.Collections.Generic;
2using System.Windows.Forms;
3
4namespace MoMoney.Presentation.Model.Menu
5{
6 public interface ISubMenu
7 {
8 string name { get; }
9 IEnumerable<IMenuItem> all_menu_items();
10 void add_to(MenuStrip strip);
11 }
12}