13 lines
257 B
TypeScript
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 };
|