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

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/events/podcast/OpenPodcastEvent.java')
-rw-r--r--News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/events/podcast/OpenPodcastEvent.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/events/podcast/OpenPodcastEvent.java b/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/events/podcast/OpenPodcastEvent.java
new file mode 100644
index 00000000..ade8ebfb
--- /dev/null
+++ b/News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/events/podcast/OpenPodcastEvent.java
@@ -0,0 +1,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;
+}