Files
nadekobot/NadekoBot.Core/Modules/Searches/Common/HearthstoneCardData.cs
2021-09-06 21:29:22 +02:00

14 lines
368 B
C#

namespace NadekoBot.Core.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; }
}
}