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
Line 
1package it.finki.tinki.model.dto;
2
3import it.finki.tinki.model.enumerator.AccountType;
4import lombok.Data;
5
6@Data
7public class AccountLoginDTO {
8 private String email;
9 private String password;
10 private AccountType type;
11}
Note: See TracBrowser for help on using the repository browser.