source: src/main/java/it/finki/tinki/model/dto/CompanyRegisterDTO.java@ 31fc5c8

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

finalized register logic

  • Property mode set to 100644
File size: 210 bytes
Line 
1package it.finki.tinki.model.dto;
2
3import lombok.Data;
4
5@Data
6public class CompanyRegisterDTO {
7 String email;
8 String password;
9 String name;
10 String country;
11 String city;
12 String street;
13}
Note: See TracBrowser for help on using the repository browser.