/** * Quiz model representing a quiz at the end of a section */ export interface Quiz { id: string; sectionId: string; title: string; description?: string; createdAt: Date; updatedAt: Date; }