Table of Contents

Class QuizSubmitResponse

Namespace
Builvero.Application.Interfaces.Services
Assembly
Builvero.Application.dll

Response model returned when submitting quiz answers.

public class QuizSubmitResponse
Inheritance
QuizSubmitResponse
Inherited Members

Remarks

Contains the quiz results including pass/fail status, score, and whether the user's role was promoted.

Properties

Passed

Gets or sets a value indicating whether the user passed the quiz (score >= 14 out of 15).

public bool Passed { get; set; }

Property Value

bool
Response model returned when submitting quiz answers.

RolePromoted

Gets or sets a value indicating whether the user's role was promoted to TeamMember (true if passed).

public bool RolePromoted { get; set; }

Property Value

bool
Response model returned when submitting quiz answers.

Score

Gets or sets the number of correct answers (out of 15).

public int Score { get; set; }

Property Value

int
Response model returned when submitting quiz answers.

Total

Gets or sets the total number of questions (always 15).

public int Total { get; set; }

Property Value

int
Response model returned when submitting quiz answers.