/**
 * Lecture model representing a lecture in a section
 */
export type LectureType = "video" | "text" | "h5p" | "presentation";
export interface Lecture {
    id: string;
    sectionId: string;
    courseId?: string;
    title: string;
    content: string;
    type: LectureType;
    orderIndex: number;
    createdAt: Date;
    updatedAt: Date;
}
