/**
 * 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;
}
