/**
 * Progress model representing a student's progress in a lecture
 */
export interface Progress {
    id: string;
    studentId: string;
    lectureId: string;
    completed: boolean;
    timestamp: Date;
}
