hrms-mgt/src/modules/09_leave/interface/request/workTime.ts

19 lines
356 B
TypeScript
Raw Normal View History

interface workingTimeDataRowType {
2024-09-03 11:28:01 +07:00
morning: string;
morningEnd: string;
afternoon: string;
afternoonEnd: string;
reason: string;
status: number;
}
interface formData {
2024-09-03 11:28:01 +07:00
morning: string;
morningEnd: string;
afternoon: string;
afternoonEnd: string;
reason: string;
status: boolean;
}
2024-09-03 11:28:01 +07:00
export type { workingTimeDataRowType, formData };