NadekoBot/NadekoBot.Modules.Games/Common/Hangman/HangmanObject.cs
2017-09-30 00:46:33 +02:00

9 lines
185 B
C#

namespace NadekoBot.Modules.Games.Common.Hangman
{
public class HangmanObject
{
public string Word { get; set; }
public string ImageUrl { get; set; }
}
}