Welcome to mirror list, hosted at ThFree Co, Russian Federation.

INesMenuElement.cs « Apps - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18ece9a55889c9a3d40e71ea31de2a90e74ae604 (plain)
1
2
3
4
5
6
7
8
9

namespace com.clusterrr.hakchi_gui
{
    public interface INesMenuElement
    {
        string Code { get; }
        string Name { get; set; }
    }
}