24 lines
478 B
TypeScript
24 lines
478 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
id: string;
|
|
educationLevel: string;
|
|
educationLevelId: string;
|
|
positionPath: string;
|
|
positionPathId: string;
|
|
institute: string;
|
|
degree: string;
|
|
field: string;
|
|
gpa: string;
|
|
country: string;
|
|
duration: string;
|
|
durationYear: number;
|
|
other: string;
|
|
fundName: string;
|
|
finishDate: Date;
|
|
startDate: number;
|
|
endDate: number;
|
|
createdFullName: string;
|
|
createdAt: Date;
|
|
}
|
|
|
|
export type { ResponseObject };
|