mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
10 lines
242 B
C#
10 lines
242 B
C#
namespace Yi.Framework.AiHub.Domain.Entities.ValueObjects;
|
|
|
|
public class TokenUsageValueObject
|
|
{
|
|
public long OutputTokenCount { get; set; }
|
|
|
|
public long InputTokenCount { get; set; }
|
|
|
|
public long TotalTokenCount { get; set; }
|
|
} |