hrms-mgt/src/modules/04_registry/interface/response/OldName.ts

15 lines
263 B
TypeScript
Raw Normal View History

2023-06-19 15:50:50 +07:00
//ข้อมูล
interface ResponseObject {
id: string;
prefix: string;
prefixId: string;
firstName: string;
lastName: string;
status: string;
file: string | null;
createdFullName: string;
createdAt: Date;
}
export type { ResponseObject };