mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
6 lines
130 B
C#
6 lines
130 B
C#
namespace NadekoBot.Modules.Games.Common.Trivia;
|
|
|
|
public interface IQuestionPool
|
|
{
|
|
Task<TriviaQuestion?> GetQuestionAsync();
|
|
} |