mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
9 lines
183 B
C#
9 lines
183 B
C#
namespace NadekoBot.Modules.Games.Hangman
|
|
{
|
|
public sealed class HangmanTerm
|
|
{
|
|
public string Word { get; set; }
|
|
public string ImageUrl { get; set; }
|
|
}
|
|
}
|