Skip to content
Snippets Groups Projects

New signup

1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
@@ -6,6 +6,7 @@ class RegistrationSchema {
firstName: string;
lastName: string;
phoneNumber: string;
dateOfBirth : string;
}
export class Registration extends RegistrationSchema {
@@ -29,6 +30,7 @@ export class RegistrationAdapter {
first_name: obj.firstName,
last_name: obj.lastName,
phone_number: obj.phoneNumber,
date_of_birth : obj.dateOfBirth,
}
}
}
Loading