Fixed .stock command, closes #356

This commit is contained in:
Kwoth
2022-05-11 12:36:50 +02:00
parent 4b5d27d963
commit b009438e0e
7 changed files with 98 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Searches;
public class YahooQueryModel
{
[JsonPropertyName("quoteResponse")]
public QuoteResponse QuoteResponse { get; set; }
}