hrms-mgt/src/modules/05_placement/interface/response/Certificate.ts
2023-06-15 10:41:27 +07:00

13 lines
252 B
TypeScript

//ข้อมูล
interface ResponseObject {
id: string;
certificateNo: string;
issuer: string;
issueDate: Date;
expireDate: Date;
certificateType: string;
createdFullName: string;
createdAt: Date;
}
export type { ResponseObject };