Ignore:
Timestamp:
11/11/21 11:55:43 (3 years ago)
Author:
andrejTavchioski <andrej.tavchioski@…>
Branches:
master
Children:
2ace8f0
Parents:
3a58bd6
Message:

fixed deleteVraboten and deleteRegistriranParkirac

File:
1 edited

Legend:

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

    r3a58bd6 r97fbc67  
    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.