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

13 lines
217 B
TypeScript
Raw Normal View History

//ข้อมูล
interface ResponseObject {
id: string;
field: string;
detail: string;
remark: string;
reference: string;
createdFullName: string;
createdAt: Date;
}
export type { ResponseObject };