Files
nadekobot/src/Nadeko.Bot.Modules.Searches/Crypto/Polygon/PolygonTickerResponse.cs
2023-03-26 14:44:25 +02:00

13 lines
305 B
C#

#nullable disable
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Searches;
public class PolygonTickerResponse
{
[JsonPropertyName("status")]
public string Status { get; set; }
[JsonPropertyName("results")]
public List<PolygonTickerData> Results { get; set; }
}