using System.Text.Json.Serialization;
namespace AnthropicClient.Models;
///
/// Represents the usage of a response.
///
public class Usage
{
///
/// Gets the number of input tokens used.
///
[JsonPropertyName("input_tokens")]
public int InputTokens { get; init; }
///
/// Gets the number of output tokens used.
///
[JsonPropertyName("output_tokens")]
public int OutputTokens { get; init; }
}