mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-08 02:30:52 +08:00
17 lines
389 B
C#
17 lines
389 B
C#
using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
|
|
|
|
namespace Yi.Furion.Application.Bbs.Services
|
|
{
|
|
/// <summary>
|
|
/// Setting应用抽象
|
|
/// </summary>
|
|
public interface ISettingService : IApplicationService
|
|
{
|
|
/// <summary>
|
|
/// 获取配置标题
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<string> GetTitleAsync();
|
|
}
|
|
}
|