main
Last change
on this file was 8ca35dc, checked in by Aleksandar Panovski <apano77@…>, 4 months ago |
Done with stupid timeslots
|
-
Property mode
set to
100644
|
File size:
457 bytes
|
Rev | Line | |
---|
[5a9c93b] | 1 | package com.example.rezevirajmasa.demo.dto;
|
---|
| 2 |
|
---|
| 3 | import lombok.AllArgsConstructor;
|
---|
| 4 | import lombok.Builder;
|
---|
| 5 | import lombok.Data;
|
---|
| 6 | import lombok.NoArgsConstructor;
|
---|
| 7 |
|
---|
| 8 | @AllArgsConstructor
|
---|
| 9 | @NoArgsConstructor
|
---|
| 10 | @Builder
|
---|
| 11 | @Data
|
---|
| 12 | public class UserDto {
|
---|
| 13 | private Long id;
|
---|
| 14 | private String firstName;
|
---|
| 15 | private String lastName;
|
---|
| 16 | private String email;
|
---|
| 17 | private String token;
|
---|
[8ca35dc] | 18 | private String phone;
|
---|
| 19 | private String address;
|
---|
| 20 | private String membershipLevel;
|
---|
[5a9c93b] | 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.