Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
26055 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class TitleModel {
4
	public Boolean display;
5
	public String text;
28434 tejbeer 6
	public int fontSize;
7
	public String fontColor;
26055 tejbeer 8
 
9
	public Boolean getDisplay() {
10
		return display;
11
	}
12
 
13
	public void setDisplay(Boolean display) {
14
		this.display = display;
15
	}
16
 
17
	public String getText() {
18
		return text;
19
	}
20
 
21
	public void setText(String text) {
22
		this.text = text;
23
	}
24
 
28434 tejbeer 25
	public int getFontSize() {
26
		return fontSize;
27
	}
28
 
29
	public void setFontSize(int fontSize) {
30
		this.fontSize = fontSize;
31
	}
32
 
33
	public String getFontColor() {
34
		return fontColor;
35
	}
36
 
37
	public void setFontColor(String fontColor) {
38
		this.fontColor = fontColor;
39
	}
40
 
41
 
42
 
26055 tejbeer 43
}