using System.Text.Json.Serialization; namespace AnthropicClient.Models; /// /// Represents an Anthropic model. /// public class AnthropicModel { /// /// The type of the model. /// public string Type { get; init; } = string.Empty; /// /// The id of the model. /// public string Id { get; init; } = string.Empty; /// /// The display name of the model. /// [JsonPropertyName("display_name")] public string DisplayName { get; init; } = string.Empty; /// /// The created date of the model. /// [JsonPropertyName("created_at")] public DateTimeOffset CreatedAt { get; init; } }