interface PracticumCreate {
    description: string;
    endDate: string;
    instructors: { email: string; exists?: boolean }[];
    name: string;
    requiredHours: number;
    startDate: string;
    students: Student[];
}

Hierarchy (View Summary)

Properties

description: string
endDate: string
instructors: { email: string; exists?: boolean }[]
name: string
requiredHours: number
startDate: string
students: Student[]