Last change
on this file was dfd5d87, checked in by Marko <Marko@…>, 2 years ago |
Registration logic with confirmation token implemented
|
-
Property mode
set to
100644
|
File size:
387 bytes
|
Line | |
---|
1 | package finki.it.phoneluxbackend.data;
|
---|
2 |
|
---|
3 | import lombok.AllArgsConstructor;
|
---|
4 | import lombok.EqualsAndHashCode;
|
---|
5 | import lombok.Getter;
|
---|
6 | import lombok.ToString;
|
---|
7 |
|
---|
8 | @Getter
|
---|
9 | @AllArgsConstructor
|
---|
10 | @EqualsAndHashCode
|
---|
11 | @ToString
|
---|
12 | public class RegistrationRequest {
|
---|
13 | private final String firstName;
|
---|
14 | private final String lastName;
|
---|
15 | private final String password;
|
---|
16 | private final String email;
|
---|
17 |
|
---|
18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.