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