source: src/main/java/it/finki/tinki/model/dto/LoginResponseDTO.java@ 723994f

Last change on this file since 723994f was 723994f, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

refactoring and further login functionality

  • Property mode set to 100644
File size: 250 bytes
Line 
1package it.finki.tinki.model.dto;
2
3import it.finki.tinki.model.enumerator.AccountType;
4import lombok.Data;
5
6@Data
7public class LoginResponseDTO {
8 private Long id;
9 private String email;
10 private String name;
11 private AccountType type;
12}
Note: See TracBrowser for help on using the repository browser.