summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedImage.java
blob: f62f132671d4861c6f94fcca2b003b5b2c34eb47 (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
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() {
		
	}
	
	
	
	
}