Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PodcastItem.java « model « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 544b91c2e0354aac9a0b8dd0670d8861974dfac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package de.luhmer.owncloudnewsreader.model;

import java.io.Serializable;

/**
 * Created by David on 21.06.2014.
 */
public class PodcastItem implements Serializable {

    public PodcastItem() {

    }

    public PodcastItem(String itemId, String title, String link, String mimeType, boolean offlineCached) {
        this.itemId = itemId;
        this.title = title;
        this.link = link;
        this.mimeType = mimeType;
        this.offlineCached = offlineCached;
    }

    public String itemId;
    public String title;
    public String link;
    public String mimeType;
    public boolean offlineCached;

    public Integer downloadProgress;

    public static Integer DOWNLOAD_COMPLETED = -1;
    public static Integer DOWNLOAD_NOT_STARTED = -2;
}