Files
nadekobot/src/NadekoBot/Modules/Searches/_Common/HearthstoneCardData.cs

13 lines
339 B
C#

#nullable disable
namespace NadekoBot.Modules.Searches.Common;
public class HearthstoneCardData
{
public string Text { get; set; }
public string Flavor { get; set; }
public bool Collectible { get; set; }
public string Img { get; set; }
public string ImgGold { get; set; }
public string PlayerClass { get; set; }
}