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

Hierarchy (View Summary)

Properties

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