2017-07-17 19:42:36 +00:00
|
|
|
|
namespace NadekoBot.Modules.Searches.Common
|
2016-08-16 12:11:45 +00:00
|
|
|
|
{
|
|
|
|
|
public class WoWJoke
|
|
|
|
|
{
|
|
|
|
|
public string Question { get; set; }
|
|
|
|
|
public string Answer { get; set; }
|
|
|
|
|
public override string ToString() => $"`{Question}`\n\n**{Answer}**";
|
|
|
|
|
}
|
|
|
|
|
}
|