source: src/main/java/it/finki/tinki/model/pojo/AuthResponseDataPojo.java@ 504c3ef

Last change on this file since 504c3ef was 83a5af4, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

added response data

  • Property mode set to 100644
File size: 419 bytes
Line 
1package it.finki.tinki.model.pojo;
2
3import it.finki.tinki.model.enumerator.AccountType;
4import lombok.Data;
5
6@Data
7public class AuthResponseDataPojo {
8 Long id;
9 String email;
10 String name;
11 AccountType type;
12
13 public AuthResponseDataPojo() {
14 this.id = null;
15 this.email = "Wrong username or password!";
16 this.name = "Wrong username or password!";
17 this.type = null;
18 }
19}
Note: See TracBrowser for help on using the repository browser.