hrms-mgt/src/components/information/interface/response/Coin.ts

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 };