juapp-freelancer-service-client
Version:
freelancer service client
19 lines (16 loc) • 358 B
text/typescript
/* 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;
}