UNPKG

juapp-freelancer-service-client

Version:
19 lines (16 loc) 358 B
/* 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; }