Class QuizStartResponse
- Namespace
- Builvero.Application.Interfaces.Services
- Assembly
- Builvero.Application.dll
Response model returned when starting a new quiz attempt.
public class QuizStartResponse
- Inheritance
-
QuizStartResponse
- Inherited Members
Remarks
Contains the quiz attempt ID and the list of 15 randomly selected questions without correct answers.
Properties
AttemptId
Gets or sets the unique identifier of the quiz attempt.
public Guid AttemptId { get; set; }
Property Value
- Guid
- Response model returned when starting a new quiz attempt.
Questions
Gets or sets the list of 15 randomly selected quiz questions.
public List<QuizQuestionDto> Questions { get; set; }
Property Value
- List<QuizQuestionDto>
- Response model returned when starting a new quiz attempt.
Remarks
Questions do not include correct answers to prevent cheating.