Files
nadekobot/NadekoBot.Core/Modules/Games/Common/Hangman/HangmanObject.cs
2021-09-06 21:29:22 +02:00

18 lines
399 B
C#

using NadekoBot.Extensions;
namespace NadekoBot.Modules.Games.Common.Hangman
{
public class HangmanObject
{
public string Word { get; set; }
public string ImageUrl { get; set; }
public string GetWord()
{
var term = Word.ToTitleCase();
return $"[{term}](https://en.wikipedia.org/wiki/{term.Replace(' ', '_')})";
}
}
}