21 lines
440 B
TypeScript
21 lines
440 B
TypeScript
|
|
//ข้อมูล
|
||
|
|
interface ResponseObject {
|
||
|
|
createdAt: Date
|
||
|
|
createdFullName: string
|
||
|
|
createdUserId: string
|
||
|
|
dateStart: Date | null
|
||
|
|
dateEnd: Date | null
|
||
|
|
detail: string
|
||
|
|
field: string
|
||
|
|
id: string
|
||
|
|
isActive: boolean
|
||
|
|
lastUpdateFullName: string
|
||
|
|
lastUpdateUserId: string
|
||
|
|
lastUpdatedAt: Date
|
||
|
|
profileId: string
|
||
|
|
reference: string
|
||
|
|
remark: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponseObject };
|
||
|
|
|