fix: type

This commit is contained in:
puriphatt 2024-06-11 12:27:15 +00:00
parent e48946d4e7
commit 12a5f618bb
2 changed files with 3 additions and 1 deletions

View file

@ -200,7 +200,7 @@ export type EmployeeOther = {
};
export type EmployeeOtherCreate = {
birthPlace?: string;
motherBirthPlace?: string;
motherLastNameEN?: string;
motherFirstNameEN?: string;
fatherLastNameEN?: string;
@ -209,5 +209,6 @@ export type EmployeeOtherCreate = {
motherFirstName?: string;
fatherLastName?: string;
fatherFirstName?: string;
fatherBirthPlace?: string;
citizenId?: string;
};