diff --git a/src/controllers/user-controller.ts b/src/controllers/user-controller.ts index 1863c21..97c9b42 100644 --- a/src/controllers/user-controller.ts +++ b/src/controllers/user-controller.ts @@ -38,6 +38,7 @@ type UserCreate = { firstNameEN: string; lastName: string; lastNameEN: string; + gender: string; code?: string; registrationNo?: string; @@ -72,6 +73,7 @@ type UserUpdate = { firstNameEN?: string; lastName?: string; lastNameEN?: string; + gender?: string; code?: string; registrationNo?: string;