using System.Text.Json.Serialization; public class MittalInput { [JsonPropertyName("Author")] public string? Author { get; set; } [JsonPropertyName("Quote")] public string? Content { get; set; } [JsonPropertyName("Tags")] public List? Tags { get; set; } }