Files
nadekobot/src/NadekoBot/Modules/Games/Trivia/TriviaQuestionModel.cs
2022-07-11 23:11:45 +00:00

11 lines
328 B
C#

#nullable disable
namespace NadekoBot.Modules.Games.Common.Trivia;
public sealed class TriviaQuestionModel
{
public string Category { get; init; }
public string Question { get; init; }
public string ImageUrl { get; init; }
public string AnswerImageUrl { get; init; }
public string Answer { get; init; }
}