hrms-mgt/src/modules/04_registryNew/interface/request/Profile.ts

22 lines
484 B
TypeScript
Raw Normal View History

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;
phone: string | null;
posLevelId: string;
posTypeId: string;
prefix: string;
rank: string | null;
relationship: string | null;
religion: string | null;
telephoneNumber: string | null;
}
export type { RequestObject };