mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
11 lines
328 B
C#
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; }
|
|
} |