private void OnRoundEnded(object?sender, GameIdEventArgs e)
 {
     if (string.Equals(e.GameId, GameId, StringComparison.Ordinal))
     {
         RoundEnded?.Invoke(this, EventArgs.Empty);
     }
 }
 private void OnQuestionSet(object?sender, GameIdEventArgs e)
 {
     if (string.Equals(e.GameId, GameId, StringComparison.Ordinal))
     {
         QuestionSet?.Invoke(this, EventArgs.Empty);
     }
 }