Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20424 kshitij.so 1
package com.hotspotstore.model;
2
 
3
public class ImagePojo {
4
	private String title;
5
	private String url;
6
 
7
 
8
	public ImagePojo(String title, String url) {
9
		super();
10
		this.title = title;
11
		this.url = url;
12
	}
13
	public String getTitle() {
14
		return title;
15
	}
16
	public void setTitle(String title) {
17
		this.title = title;
18
	}
19
	public String getUrl() {
20
		return url;
21
	}
22
	public void setUrl(String url) {
23
		this.url = url;
24
	}
25
}