Created
February 1, 2020 16:49
-
-
Save abner-math/bb8a4c8e93d73cd308d2e1552c05ae78 to your computer and use it in GitHub Desktop.
Medium#1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class System { | |
private Set<User> users; | |
public void setUsers(Set<User> users) { | |
this.users = users; | |
} | |
public Set<Usuario> getUsers() { | |
return this.users; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment