#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 Result { get; set; } }