mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 16:36:37 +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; }
|
||
}
|