feat: add gender field to database
This commit is contained in:
parent
97cc610171
commit
f9a737faff
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue