mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
Split dangerous commands into cleanup commands for each module they belong to
This commit is contained in:
11
src/Nadeko.Bot.Common/_Common/TriviaQuestionModel.cs
Normal file
11
src/Nadeko.Bot.Common/_Common/TriviaQuestionModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
#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; }
|
||||
}
|
Reference in New Issue
Block a user