Files
Yi.Framework/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application/Services/SettingService.cs
2023-12-11 09:55:12 +08:00

23 lines
591 B
C#

using Volo.Abp.Application.Services;
using Yi.Framework.Bbs.Application.Contracts.IServices;
namespace Yi.Framework.Bbs.Application.Services
{
/// <summary>
/// Setting服务实现
/// </summary>
public class SettingService : ApplicationService,
ISettingService
{
/// <summary>
/// 获取配置标题
/// </summary>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public Task<string> GetTitleAsync()
{
return Task.FromResult("你好世界");
}
}
}