mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
13 lines
339 B
C#
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; }
|
|
} |