| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2016/2/3 11:31:05
- //Author
- //Description Create
- //----------------------------------------------------------------
- using Muchinfo.MTPClient.Data;
- using Muchinfo.MTPClient.Data.Enums;
- namespace Muchinfo.MTPClient.IService
- {
- public interface IModuleMenuService
- {
- /// <summary>
- /// 模块提供的菜单
- /// </summary>
- /// <returns></returns>
- Dictionary<MenuCommandType, SysMenuItem> GetModuleMenuItems();
- }
-
- }
|