Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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;
6
 
7
	public Boolean getDisplay() {
8
		return display;
9
	}
10
 
11
	public void setDisplay(Boolean display) {
12
		this.display = display;
13
	}
14
 
15
	public String getText() {
16
		return text;
17
	}
18
 
19
	public void setText(String text) {
20
		this.text = text;
21
	}
22
 
23
}