using System.Text.Json.Serialization; namespace Luna.Providers.Mistral.DTOs; public class MistralDelta { [JsonPropertyName("role")] public string? Role { get; set; } [JsonPropertyName("content")] public string? Content { get; set; } }