Interface CourseDetails

Interface for the course details object.

interface CourseDetails {
    courseCode: string;
    courseName: string;
    endDate: Date;
    instructorEmail: string;
    startDate: Date;
    studentGroup: string;
    studentList: Student[];
}

Properties

courseCode: string

The code of the course

courseName: string

The name of the course

endDate: Date

The end date of the course

instructorEmail: string

The email of the instructor

startDate: Date

The start date of the course

studentGroup: string

The student group for the course

studentList: Student[]

The list of students in the course