targo-backend/src/modules/shared/interfaces/shifts.interface.ts
2025-10-14 16:43:18 -04: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;
}