hrms-mgt/src/modules/01_masterdata/interface/response/positionEmployee/Status.ts
2024-07-31 09:48:33 +07:00

14 lines
302 B
TypeScript

//ข้อมูล
interface ResponseHistoryObject {
createdAt?: Date;
createdFullName: String;
createdUserId: String;
id: String;
isActive: Boolean;
lastUpdateFullName: String;
lastUpdateUserId: String;
lastUpdatedAt?: Date;
name: String;
}
export type { ResponseHistoryObject };