Changeset 723994f for src/main/java/it/finki/tinki/model/dto
- Timestamp:
- 01/07/21 16:13:55 (4 years ago)
- Branches:
- master
- Children:
- 509cb95
- Parents:
- 1397178
- Location:
- src/main/java/it/finki/tinki/model/dto
- Files:
-
- 4 added
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/tinki/model/dto/AccountLoginDTO.java
r1397178 r723994f 1 package it.finki.tinki.model. pojo;1 package it.finki.tinki.model.dto; 2 2 3 3 import it.finki.tinki.model.enumerator.AccountType; … … 5 5 6 6 @Data 7 public class AccountLoginD ataPojo{8 private String account;7 public class AccountLoginDTO { 8 private String email; 9 9 private String password; 10 10 private AccountType type; -
src/main/java/it/finki/tinki/model/dto/AuthResponseDTO.java
r1397178 r723994f 1 package it.finki.tinki.model. pojo;1 package it.finki.tinki.model.dto; 2 2 3 3 import it.finki.tinki.model.enumerator.AccountType; … … 5 5 6 6 @Data 7 public class AuthResponseD ataPojo{8 Long id;9 String email;10 String name;11 AccountType type;7 public class AuthResponseDTO { 8 private Long id; 9 private String email; 10 private String name; 11 private AccountType type; 12 12 13 public AuthResponseD ataPojo() {13 public AuthResponseDTO() { 14 14 this.id = null; 15 15 this.email = "Wrong username or password!";
Note:
See TracChangeset
for help on using the changeset viewer.