First implementation of the panel dedicated to the download, divided by type of the downloaded resource

This commit is contained in:
CappielloAntonio 2021-08-28 16:54:12 +02:00
parent 8789b44e26
commit 23568bae9b
16 changed files with 609 additions and 102 deletions

View file

@ -76,6 +76,11 @@ public class Artist implements Parcelable {
this.name = name;
}
public Artist(Download download) {
this.id = download.getArtistId();
this.name = download.getArtistName();
}
public String getId() {
return id;
}