quotes-net / models /MittalInput.cs
Florin Bobiș
added datasource filtering, updated db from seed
ec947b6
raw
history blame contribute delete
289 Bytes
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; }
}