UNPKG

@defikitdotnet/education-module-ai

Version:
11 lines (10 loc) 210 B
/** * Progress model representing a student's progress in a lecture */ export interface Progress { id: string; studentId: string; lectureId: string; completed: boolean; timestamp: Date; }