@defikitdotnet/education-module-ai
Version:
AI Education Module using Agent Framework
16 lines (15 loc) • 350 B
TypeScript
/**
* 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;
}