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
 
4
 
5
public class HeaderInfoPojo {
6
	private String title;
7
	private String metaDescription;
8
	private String metaKeywords;
9
 
10
	public String getTitle() {
11
		return title;
12
	}
13
	public void setTitle(String title) {
14
		this.title = title;
15
	}
16
	public String getMetaDescription() {
17
		return metaDescription;
18
	}
19
	public void setMetaDescription(String metaDescription) {
20
		this.metaDescription = metaDescription;
21
	}
22
	public String getMetaKeywords() {
23
		return metaKeywords;
24
	}
25
	public void setMetaKeywords(String metaKeywords) {
26
		this.metaKeywords = metaKeywords;
27
	}
28
}