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:
297 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 CredentialsDto {
|
---|
[8ca35dc] | 13 | private String email;
|
---|
[5a9c93b] | 14 | private char[] password;
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.