23 lines
502 B
C#
23 lines
502 B
C#
namespace Yi.Furion.Rbac.Application;
|
|
|
|
/// <summary>
|
|
/// 系统服务接口
|
|
/// </summary>
|
|
public class SystemAppService : IDynamicApiController
|
|
{
|
|
private readonly ISystemService _systemService;
|
|
public SystemAppService(ISystemService systemService)
|
|
{
|
|
_systemService = systemService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取系统描述
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string GetDescription()
|
|
{
|
|
return _systemService.GetDescription();
|
|
}
|
|
}
|