Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21545 ashik.ali 1
package com.spice.profitmandi.dao.model;
2
 
3
public class HeaderInfoPojo {
4
	private String title;
5
	private String metaDescription;
6
	private String metaKeywords;
7
 
8
	public String getTitle() {
9
		return title;
10
	}
11
	public void setTitle(String title) {
12
		this.title = title;
13
	}
14
	public String getMetaDescription() {
15
		return metaDescription;
16
	}
17
	public void setMetaDescription(String metaDescription) {
18
		this.metaDescription = metaDescription;
19
	}
20
	public String getMetaKeywords() {
21
		return metaKeywords;
22
	}
23
	public void setMetaKeywords(String metaKeywords) {
24
		this.metaKeywords = metaKeywords;
25
	}
26
}