interface WorkLogCourseDetails {
    course: WorkLogCourse & { instructor_name: string };
    entries: WorkLogEntry[];
    groups: WorkLogCourseGroup[];
}

Properties

Properties

course: WorkLogCourse & { instructor_name: string }
entries: WorkLogEntry[]