mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
- Removed GuildConfigs repository, moved to extensions - Moved StreamSettings extension to GuildConfig extensions - namespace NadekoBot.Core has been simplified to NadekoBot in many places (more to come) - Replaced some raw delete queries with simple linqtodb queries
29 lines
764 B
C#
29 lines
764 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.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; }
|
|
}
|
|
}
|