summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Model/Menu/ISubMenu.cs
blob: f06a0b90f110977e522627d25e6f77b3a20c5f9e (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;
using Notepad.Presentation.Model.Menu;

namespace Notepad.Presentation.Model.Menu {
    public interface ISubMenu {
        string Name();
        IEnumerable<IMenuItem> AllMenuItems();
    }
}