master
1using System.Collections.Generic;
2using Notepad.Presentation.Model.Menu;
3
4namespace Notepad.Presentation.Model.Menu {
5 public interface ISubMenu {
6 string Name();
7 IEnumerable<IMenuItem> AllMenuItems();
8 }
9}