mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
14 lines
368 B
C#
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; }
|
|
}
|
|
}
|