20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Services
|
|
{
|
|
/// <summary>
|
|
/// 导航服务接口
|
|
/// </summary>
|
|
public interface INavigationMenuService
|
|
{
|
|
/// <summary>
|
|
/// 初始化
|
|
/// </summary>
|
|
void Initialize();
|
|
}
|
|
}
|