Subversion Repositories SmartDukaan

Rev

Rev 21730 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21409 amit.gupta 1
package com.spice.profitmandi.web.res.order;
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
}