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