elliebot/src/Ellie.Bot.Modules.Searches/_common/HearthstoneCardData.cs
2023-08-07 23:21:31 +12:00

13 lines
No EOL
335 B
C#

#nullable disable
namespace Ellie.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; }
}