Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class Song {
  2. String name;
  3. String href;
  4. String imageUrl;
  5. Set<String> artistNames;
  6.  
  7. Song(String name, String href, String imageUrl, Set<String> artistNames) {
  8. this.name = name;
  9. this.href = href;
  10. this.imageUrl = imageUrl;
  11. this.artistNames = artistNames;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement