targo-backend/src/time-and-attendance/shared/interfaces/shifts.interface.ts
2025-11-03 10:53:15 -05:00

9 lines
192 B
TypeScript

export interface ShiftKey {
timesheet_id: number;
date: Date;
start_time: Date;
end_time: Date;
bank_code_id: number;
is_remote: boolean;
comment?: string | null;
}