QuizResultDto: {
    answers: {
        correctOptionIds: string[];
        isCorrect: boolean | null;
        pointsAwarded: number;
        questionId: string;
    }[] | null;
    attemptId: string;
    passed: boolean | null;
    score: number | null;
    submittedAt: string;
}