source: sources/app/src/main/java/parkup/configs/RegistrationRequest.java@ 9dd526f

Last change on this file since 9dd526f was 97fbc67, checked in by andrejTavchioski <andrej.tavchioski@…>, 3 years ago

fixed deleteVraboten and deleteRegistriranParkirac

  • Property mode set to 100644
File size: 838 bytes
Line 
1package parkup.configs;
2
3public class RegistrationRequest {
4 private final String firstName;
5 private final String lastName;
6 private final String email;
7 private final String password;
8 private final String mobile;
9
10 public RegistrationRequest(String firstName, String lastName, String email, String password, String mobile) {
11 this.firstName = firstName;
12 this.lastName = lastName;
13 this.email = email;
14 this.password = password;
15 this.mobile = mobile;
16 }
17
18 public String getFirstName() {
19 return firstName;
20 }
21
22 public String getLastName() {
23 return lastName;
24 }
25
26 public String getEmail() {
27 return email;
28 }
29
30 public String getPassword() {
31 return password;
32 }
33
34 public String getMobile(){
35 return mobile;
36 }
37
38}
Note: See TracBrowser for help on using the repository browser.