Subversion Repositories SmartDukaan

Rev

Rev 9218 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9218 Rev 9280
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
3
public class ImagePojo {
3
public class MediaPojo {
4
	private String title;
4
	private String title;
5
	private String url;
5
	private String url;
6
	
6
	
7
	
7
	
8
	public ImagePojo(String title, String url) {
8
	public MediaPojo(String title, String url) {
9
		super();
9
		super();
10
		this.title = title;
10
		this.title = title;
11
		this.url = url;
11
		this.url = url;
12
	}
12
	}
13
	public String getTitle() {
13
	public String getTitle() {