hrms-mgt/src/modules/04_registryPerson/interface/request/Profile.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 3b6c22027c fix bug
2024-11-04 15:21:23 +07:00

21 lines
496 B
TypeScript

interface RequestObject {
birthDate: Date | null;
bloodGroup: string | null;
citizenId: string;
// email: string | null;
ethnicity: string | null;
firstName: string;
gender: string | null;
lastName: string;
nationality: string | null;
// posLevelId: string;
// posTypeId: string;
prefix: string;
rank: string | null;
relationship: string | null;
religion: string | null;
phone: string | null;
// telephoneNumber: string | null;
}
export type { RequestObject };