14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
//ข้อมูล คำนำหน้าชื่อ
|
|
interface ResponsePrefixHistoryObject {
|
|
createdAt?: Date;
|
|
createdFullName: String;
|
|
createdUserId: String;
|
|
id: String;
|
|
isActive: Boolean;
|
|
lastUpdateFullName: String;
|
|
lastUpdateUserId: String;
|
|
lastUpdatedAt?: Date;
|
|
name: String;
|
|
}
|
|
|
|
export type { ResponsePrefixHistoryObject };
|