UNPKG

@defikitdotnet/education-module-ai

Version:
13 lines (12 loc) 256 B
/** * Enrollment model representing a student enrollment in a course */ export interface Enrollment { id: string; studentId: string; courseId: string; progress: number; completed: boolean; enrolledAt: Date; updatedAt: Date; }