Added podcast fields in the generic Media class

This commit is contained in:
CappielloAntonio 2022-02-07 09:49:06 +01:00
parent f6e5ec81d5
commit 16feb1e8b3

View file

@ -52,6 +52,12 @@ public class Media implements Parcelable {
private long lastPlay;
private int rating;
private String streamId;
private String channelId;
private String description;
private String status;
private Date publishDate;
public Media() {
this.id = UUID.randomUUID().toString();
}