14 lines
263 B
TypeScript
14 lines
263 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
id: string;
|
|
prefix: string;
|
|
prefixId: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
status: string;
|
|
file: string | null;
|
|
createdFullName: string;
|
|
createdAt: Date;
|
|
}
|
|
|
|
export type { ResponseObject };
|