cyberhybridhub/lib/models/question_defer_result.dart
2026-06-03 04:21:42 -05:00

13 lines
306 B
Dart

import 'incoming_question.dart';
/// Outcome of deferring (skipping) a question to the back of the FIFO queue.
class QuestionDeferResult {
const QuestionDeferResult({
required this.unansweredCount,
this.nextQuestion,
});
final int unansweredCount;
final IncomingQuestion? nextQuestion;
}