Add methods to manage artists of a group.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / Group.java
index 8ab2f87..5f135f9 100644 (file)
@@ -17,6 +17,8 @@
 
 package net.pterodactylus.demoscenemusic.data;
 
+import java.util.Collection;
+
 /**
  * TODO
  *
@@ -32,4 +34,8 @@ public interface Group extends Base {
 
        public Group url(String url);
 
+       public Collection<Artist> artists();
+
+       public Group artists(Collection<Artist> artists);
+
 }