16 lines
378 B
C#
16 lines
378 B
C#
|
|
using QYZH.InteractiveMagazine.Models.Dto.SystemManagement;
|
||
|
|
|
||
|
|
namespace QYZH.InteractiveMagazine.IService;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 系统管理服务接口
|
||
|
|
/// </summary>
|
||
|
|
public interface ISystemManagementService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 获取所有枚举信息
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>枚举信息列表</returns>
|
||
|
|
Task<List<EnumInfoOutput>> GetAllEnumsAsync();
|
||
|
|
}
|