hrms-mgt/src/modules/04_registryNew/interface/request/Education.ts

26 lines
542 B
TypeScript

interface RequestItemsObject {
profileId: string;
educationLevel: string;
institute: string;
startYear: number;
endYear: number;
finishDate: Date | null;
startDate: Date;
endDate: Date;
isEducation: boolean | null;
degree: string;
field: string;
fundName: string;
gpa: string;
country: string;
other: string;
duration: string;
durationYear: number | null;
note: string;
educationLevelId: string;
positionPath: string;
positionPathId: string;
isDate: boolean;
}
export type { RequestItemsObject };