Spaces:
Runtime error
Runtime error
File size: 292 Bytes
ec947b6 |
1 2 3 4 5 6 7 8 9 10 11 |
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<string>? Tags { get; set; }
} |