fix: missing selected image field

This commit is contained in:
Methapon Metanipat 2024-09-10 15:45:58 +07:00
parent 68d6bcfcab
commit c755650fed

View file

@ -63,6 +63,7 @@ export type CustomerCreate = {
lastNameEN?: string;
gender: string;
birthDate: Date;
selectedImage?: string;
};
export type CustomerUpdate = {
@ -78,6 +79,7 @@ export type CustomerUpdate = {
lastNameEN?: string;
gender?: string;
birthDate?: Date;
selectedImage?: string;
};
@Route("api/v1/customer")