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