14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { UserSchema } from './UserSchema';
|
|
export type WorkShiftSchema = {
|
|
id: number;
|
|
startedAt: string;
|
|
finishedAt?: (string | null);
|
|
isPaused?: (boolean | null);
|
|
user: UserSchema;
|
|
};
|
|
|