feat: add gender field to database

This commit is contained in:
Methapon2001 2024-04-05 16:43:59 +07:00
parent 97cc610171
commit f9a737faff

View file

@ -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;