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