Subversion Repositories SmartDukaan

Rev

Rev 27706 | 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 OptionsModel {
4
 
5
	public LegendModel legend;
6
	public TitleModel title;
7
 
8
	public LegendModel getLegend() {
9
		return legend;
10
	}
11
 
12
	public void setLegend(LegendModel legend) {
13
		this.legend = legend;
14
	}
15
 
16
	public TitleModel getTitle() {
17
		return title;
18
	}
19
 
20
	public void setTitle(TitleModel title) {
21
		this.title = title;
22
	}
23
 
24
}