add null otherNationality
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 6s

This commit is contained in:
Kanjana 2025-04-28 13:43:20 +07:00
parent 7fe0512a2f
commit ce42a6dca6

View file

@ -74,7 +74,7 @@ type EmployeeCreate = {
dateOfBirth?: Date | null;
gender: string;
nationality: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string | null;
firstName?: string;
@ -111,7 +111,7 @@ type EmployeeUpdate = {
dateOfBirth?: Date;
gender?: string;
nationality?: string;
otherNationality?: string;
otherNationality?: string | null;
namePrefix?: string | null;
firstName?: string;