NadekoBot/NadekoBot.Modules.Games/Common/Hangman/HangmanObject.cs

9 lines
185 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
namespace NadekoBot.Modules.Games.Common.Hangman
2016-12-14 23:56:13 +00:00
{
public class HangmanObject
{
public string Word { get; set; }
public string ImageUrl { get; set; }
}
}