Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.IService/ISystemManagementService.cs

16 lines
378 B
C#
Raw Normal View History

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