Ignore:
Timestamp:
11/04/21 16:59:49 (3 years ago)
Author:
DavidTrajkovski <davidtrajkovski11@…>
Branches:
master
Children:
9504a09
Parents:
ce6ad22
Message:

fixed delete methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/app/src/main/java/parkup/configs/RegistrationRequest.java

    rce6ad22 rf6bc52d  
    66    private final String email;
    77    private final String password;
     8    private final String mobile;
    89
    9     public RegistrationRequest(String firstName, String lastName, String email, String password) {
     10    public RegistrationRequest(String firstName, String lastName, String email, String password, String mobile) {
    1011        this.firstName = firstName;
    1112        this.lastName = lastName;
    1213        this.email = email;
    1314        this.password = password;
     15        this.mobile = mobile;
    1416    }
    1517
     
    3032    }
    3133
     34    public String getMobile(){
     35        return mobile;
     36    }
     37
    3238}
Note: See TracChangeset for help on using the changeset viewer.