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

OpenPodcastEvent.java « podcast « events « 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: ade8ebfb70100d2d03702e56f8f02c67cdc8f11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.luhmer.owncloudnewsreader.events.podcast;

/**
 * Created by David on 21.06.2014.
 */
public class OpenPodcastEvent {

    public OpenPodcastEvent(String pathToFile, String mediaTitle, boolean isVideoFile) {
        this.pathToFile = pathToFile;
        this.mediaTitle = mediaTitle;
        this.isVideoFile = isVideoFile;
    }

    public boolean isVideoFile;
    public String pathToFile;
    public String mediaTitle;
}