mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
18 lines
399 B
C#
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(' ', '_')})";
|
|
}
|
|
}
|
|
}
|