20 lines
415 B
TypeScript
20 lines
415 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 };
|