summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedImage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/podfetcher/feed/FeedImage.java')
-rw-r--r--src/de/podfetcher/feed/FeedImage.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/de/podfetcher/feed/FeedImage.java b/src/de/podfetcher/feed/FeedImage.java
new file mode 100644
index 000000000..f62f13267
--- /dev/null
+++ b/src/de/podfetcher/feed/FeedImage.java
@@ -0,0 +1,26 @@
+package de.podfetcher.feed;
+
+public class FeedImage extends FeedFile {
+ public String title;
+
+ public FeedImage(String download_url, String title) {
+ super();
+ this.download_url = download_url;
+ this.title = title;
+ }
+
+ public FeedImage(long id, String title, String file_url, String download_url) {
+ this.id = id;
+ this.title = title;
+ this.file_url = file_url;
+ this.download_url = download_url;
+ }
+
+ public FeedImage() {
+
+ }
+
+
+
+
+}