mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
29 lines
769 B
C#
29 lines
769 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Core.Modules.Searches.Common
|
|
{
|
|
public class MtgData
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
public string StoreUrl { get; set; }
|
|
public string Types { get; set; }
|
|
public string ManaCost { get; set; }
|
|
}
|
|
|
|
public class MtgResponse
|
|
{
|
|
public class Data
|
|
{
|
|
public string Name { get; set; }
|
|
public string ManaCost { get; set; }
|
|
public string Text { get; set; }
|
|
public List<string> Types { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
}
|
|
|
|
public List<Data> Cards { get; set; }
|
|
}
|
|
}
|