mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
13 lines
305 B
C#
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; }
|
|
} |