コード例 #1
0
ファイル: QuizCommand.cs プロジェクト: sidkcr/devchatterbot
 public QuizCommand(IRepository repository, QuizGame quizGame)
     : base(repository, UserRole.Everyone)
 {
     HelpText  = "No Quiz HelpText yet.";
     _quizGame = quizGame;
     Cooldown  = TimeSpan.FromMinutes(2);
 }
コード例 #2
0
 public JoinQuizOperation(QuizGame game)
 {
     _game = game ?? throw new ArgumentNullException(nameof(game));
 }
コード例 #3
0
ファイル: QuizCommand.cs プロジェクト: twhite96/devchatterbot
 public QuizCommand(IRepository repository, QuizGame quizGame)
     : base(repository)
 {
     _quizGame = quizGame;
 }