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