15 lines
302 B
TypeScript
15 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 };
|