25 lines
617 B
TypeScript
25 lines
617 B
TypeScript
|
|
//ข้อมูล
|
||
|
|
interface ResponseObject {
|
||
|
|
changeName: boolean | null;
|
||
|
|
birthDate: Date;
|
||
|
|
bloodGroupId: string | null;
|
||
|
|
citizenId: string | null;
|
||
|
|
firstName: string | null;
|
||
|
|
genderId: string | null;
|
||
|
|
lastName: string | null;
|
||
|
|
nationality: string | null;
|
||
|
|
prefixId: string | null;
|
||
|
|
race: string | null;
|
||
|
|
relationshipId: string | null;
|
||
|
|
religionId: string | null;
|
||
|
|
telephoneNumber: string | null;
|
||
|
|
createdFullName: string | null;
|
||
|
|
createdAt: Date;
|
||
|
|
age: string | null;
|
||
|
|
employeeType: string | null;
|
||
|
|
employeeClass: string | null;
|
||
|
|
profileType: string | null;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResponseObject };
|