mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 00:37:21 +08:00
23 lines
503 B
C#
23 lines
503 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.UsageStatistics;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模型今日使用量统计DTO(卡片列表)
|
|||
|
|
/// </summary>
|
|||
|
|
public class ModelTodayUsageDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模型ID
|
|||
|
|
/// </summary>
|
|||
|
|
public string ModelId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 今日使用次数
|
|||
|
|
/// </summary>
|
|||
|
|
public int UsageCount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 今日消耗总Token数
|
|||
|
|
/// </summary>
|
|||
|
|
public long TotalTokens { get; set; }
|
|||
|
|
}
|