@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
17 lines (16 loc) • 450 B
TypeScript
import { BaseEntity } from "./base.entity";
import { TimesheetLine } from "./timesheet-line.entity";
export declare class TimesheetLogs extends BaseEntity {
timesheetLineId: number;
timesheetLine: TimesheetLine;
startDate: Date;
endDate: Date;
startTime: string;
endTime: string;
workedHours: string;
taskId: number;
projectName?: string;
deliverable?: string;
taskName: string;
description: string;
}