fix: input validation

This commit is contained in:
Methapon2001 2024-06-11 16:13:43 +07:00
parent 52b04bdc59
commit ce9f5d89ac

View file

@ -101,14 +101,15 @@ type EmployeeCreate = {
citizenId?: string | null;
fatherFirstName?: string | null;
fatherLastName?: string | null;
fatherBirthPlace?: string | null;
motherFirstName?: string | null;
motherLastName?: string | null;
motherBirthPlace?: string | null;
fatherFirstNameEN?: string | null;
fatherLastNameEN?: string | null;
motherFirstNameEN?: string | null;
motherLastNameEN?: string | null;
birthPlace?: string | null;
};
};