mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
215 B
C#
9 lines
215 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public class YahooQueryModel
|
|
{
|
|
[JsonPropertyName("quoteResponse")]
|
|
public QuoteResponse QuoteResponse { get; set; } = null!;
|
|
} |