Files
nadekobot/src/NadekoBot/Modules/Searches/Crypto/Polygon/FinnHubSearchResponse.cs

13 lines
296 B
C#

#nullable disable
using System.Text.Json.Serialization;
namespace NadekoBot.Modules.Searches;
public class FinnHubSearchResponse
{
[JsonPropertyName("count")]
public int Count { get; set; }
[JsonPropertyName("result")]
public List<FinnHubSearchResult> Result { get; set; }
}