17 lines
458 B
C#
17 lines
458 B
C#
using Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
|
|
|
|
/// <summary>
|
|
/// 排行榜服务接口
|
|
/// </summary>
|
|
public interface IRankingService
|
|
{
|
|
/// <summary>
|
|
/// 获取排行榜列表(全量返回)
|
|
/// </summary>
|
|
/// <param name="input">查询条件</param>
|
|
/// <returns>排行榜列表</returns>
|
|
Task<List<RankingItemDto>> GetListAsync(RankingGetListInput input);
|
|
}
|