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

9 lines
185 B
C#

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