/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { TimesheetStatus } from './TimesheetStatus';

export type Timesheet = {
    id?: string;
    project?: string;
    from?: string;
    to?: string;
    user?: {
        id?: string,
        firstName?: string,
        lastName?: string,
    };
    status?: TimesheetStatus;
}
