UNPKG

@defikitdotnet/education-module-ai

Version:
13 lines (12 loc) 238 B
/** * Section model representing a section of a course */ export interface Section { id: string; courseId: string; title: string; description?: string; orderIndex: number; createdAt: Date; updatedAt: Date; }