using System.Text.Json.Serialization; namespace Luna.Providers.Mistral.DTOs; public class MistralChatCompletionResponse { [JsonPropertyName("id")] public string? Id { get; set; } [JsonPropertyName("object")] public string? Object { get; set; } [JsonPropertyName("model")] public string? Model { get; set; } [JsonPropertyName("choices")] public List? Choices { get; set; } [JsonPropertyName("usage")] public Usage? Usage { get; set; } }