Skip to content
Snippets Groups Projects
Commit d4f61302 authored by Martin Gargalovič's avatar Martin Gargalovič
Browse files

changed the 2 lists of language and proficiency to a Map

parent 64e4e06c
No related branches found
No related tags found
3 merge requests!31M2,!28M2 user,!27Draft: M2 user
...@@ -8,6 +8,7 @@ import lombok.Getter; ...@@ -8,6 +8,7 @@ import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import java.util.List; import java.util.List;
import java.util.Map;
@Getter @Getter
@Setter @Setter
...@@ -29,6 +30,6 @@ public class UserCreateDto { ...@@ -29,6 +30,6 @@ public class UserCreateDto {
private AddressDto address; private AddressDto address;
private UserType userType; private UserType userType;
private List<Language> languages; private Map<Language,ProficiencyLevel> languageProficiency;
private List<ProficiencyLevel> proficiencyLevels;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment