mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-17 14:46:37 +08:00
16 lines
369 B
C#
16 lines
369 B
C#
|
|
using Yi.Framework.AiHub.Application.Contracts.Dtos.Announcement;
|
||
|
|
|
||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 公告服务接口
|
||
|
|
/// </summary>
|
||
|
|
public interface IAnnouncementService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 获取公告信息
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>公告信息</returns>
|
||
|
|
Task<AnnouncementOutput> GetAsync();
|
||
|
|
}
|