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