23 lines
587 B
TypeScript
23 lines
587 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
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 };
|