-
Bernard Roland (Student Com20) authoredBernard Roland (Student Com20) authored
work.ts 119 B
export interface Work {
id: string;
task: string;
user: string;
started: Date;
finished: Date;
}
export interface Work {
id: string;
task: string;
user: string;
started: Date;
finished: Date;
}