hrms-manual/src/interface/response/manage/prefix.ts

15 lines
351 B
TypeScript
Raw Normal View History

2023-09-06 14:51:44 +07:00
//ข้อมูล คำนำหน้าชื่อ
interface ResponsePrefixHistoryObject {
createdAt?: Date;
createdFullName: String;
createdUserId: String;
id: String;
isActive: Boolean;
lastUpdateFullName: String;
lastUpdateUserId: String;
lastUpdatedAt?: Date;
name: String;
}
export type { ResponsePrefixHistoryObject };