13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
id: string;
|
|
issuer: string;
|
|
detail: string;
|
|
issueDate: Date;
|
|
refCommandNo: string;
|
|
refCommandDate: Date | null;
|
|
createdFullName: string;
|
|
createdAt: Date;
|
|
}
|
|
|
|
export type { ResponseObject };
|