mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
19 lines
446 B
C#
19 lines
446 B
C#
#nullable disable
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Modules.Searches;
|
|
|
|
public class FinnHubSearchResult
|
|
{
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonPropertyName("displaySymbol")]
|
|
public string DisplaySymbol { get; set; }
|
|
|
|
[JsonPropertyName("symbol")]
|
|
public string Symbol { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
} |