mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-11 11:46:38 +08:00
15 lines
348 B
C#
15 lines
348 B
C#
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 排行榜查询输入
|
|||
|
|
/// </summary>
|
|||
|
|
public class RankingGetListInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 排行榜类型:0-模型,1-工具,不传返回全部
|
|||
|
|
/// </summary>
|
|||
|
|
public RankingTypeEnum? Type { get; set; }
|
|||
|
|
}
|