interface WorkLogEntry {
    course: { code: string; name: string };
    description: string;
    end_time: string;
    entry_id: number;
    start_time: string;
    status: number;
    work_log_course_id?: number;
    work_log_practicum_id?: number;
}

Properties

course: { code: string; name: string }
description: string
end_time: string
entry_id: number
start_time: string
status: number
work_log_course_id?: number
work_log_practicum_id?: number