hrms-mgt/src/modules/03_recruiting/interface/response/Education.ts
2023-06-01 12:54:58 +07:00

13 lines
257 B
TypeScript

//ข้อมูล
interface ResponseObject {
id: string;
educationLevelId: string;
educationLevelName: string;
major: string;
scores: number | null;
name: string;
durationStart: Date;
durationEnd: Date;
}
export type { ResponseObject };