Skip to content

Instantly share code, notes, and snippets.

@mcsee
Created June 29, 2024 17:10
Show Gist options
  • Save mcsee/715a932cd775b89b1ea04ce0e42775fe to your computer and use it in GitHub Desktop.
Save mcsee/715a932cd775b89b1ea04ce0e42775fe to your computer and use it in GitHub Desktop.
public class Person {
private List<String> hobbies;
public Person(List<String> hobbies) {
this.hobbies = hobbies;
}
public List<String> getHobbies() {
return hobbies;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment