/**
 * QuizAttempt model representing a student's attempt at a quiz
 */
export interface QuizAttempt {
    id: string;
    studentId: string;
    quizId: string;
    score: number;
    answers: Record<string, string>;
    completed: boolean;
    timestamp: Date;
}
