9 lines
185 B
C#
Raw Normal View History

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