hrms-mgt/src/modules/09_leave/interface/request/workTime.ts
2024-09-03 11:28:01 +07:00

18 lines
356 B
TypeScript

interface workingTimeDataRowType {
morning: string;
morningEnd: string;
afternoon: string;
afternoonEnd: string;
reason: string;
status: number;
}
interface formData {
morning: string;
morningEnd: string;
afternoon: string;
afternoonEnd: string;
reason: string;
status: boolean;
}
export type { workingTimeDataRowType, formData };