source: src/main/java/it/finki/tinki/model/dto/AccountLoginDTO.java@ bd46dbb

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

refactoring and further login functionality

  • Property mode set to 100644
File size: 232 bytes
RevLine 
[723994f]1package it.finki.tinki.model.dto;
[29c0ed0]2
3import it.finki.tinki.model.enumerator.AccountType;
4import lombok.Data;
5
6@Data
[723994f]7public class AccountLoginDTO {
8 private String email;
[29c0ed0]9 private String password;
10 private AccountType type;
11}
Note: See TracBrowser for help on using the repository browser.