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