15 lines
273 B
TypeScript
15 lines
273 B
TypeScript
|
|
//ข้อมูล
|
||
|
|
interface ResponseObject {
|
||
|
|
id: string;
|
||
|
|
dateStart: Date;
|
||
|
|
dateEnd: Date;
|
||
|
|
detail: string;
|
||
|
|
reference: string;
|
||
|
|
refCommandNo: string;
|
||
|
|
refCommandDate: Date | null;
|
||
|
|
createdFullName: string;
|
||
|
|
createdAt: Date;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponseObject };
|