Files
nadekobot/src/Nadeko.Bot.Common/_Common/TriviaQuestionModel.cs

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; }
}