Skip to content
Snippets Groups Projects
work.ts 119 B

export interface Work {
    id: string;
    task: string;
    user: string;
    started: Date;
    finished: Date;
}