hrms-mgt/src/components/information/interface/response/OldName.ts

14 lines
263 B
TypeScript

//ข้อมูล
interface ResponseObject {
id: string;
prefix: string;
prefixId: string;
firstName: string;
lastName: string;
status: string;
file: string | null;
createdFullName: string;
createdAt: Date;
}
export type { ResponseObject };