Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10617 amit.gupta 1
package in.shop2020.mobileapi.serving.pojos;
2
 
3
public class CaptchaPojo {
4
	private String captchaImagePath;
5
	private String captchaText;
6
 
7
	public String getCaptchaImagePath() {
8
		return captchaImagePath;
9
	}
10
	public void setCaptchaImagePath(String captchaImagePath) {
11
		this.captchaImagePath = captchaImagePath;
12
	}
13
	public String getCaptchaText() {
14
		return captchaText;
15
	}
16
	public void setCaptchaText(String captchaText) {
17
		this.captchaText = captchaText;
18
	}
19
}