Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28430 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class PluginsModel {
4
 
5
	public LegendModel legend;
6
 
7
	public LegendModel getLegend() {
8
		return legend;
9
	}
10
 
11
	public void setLegend(LegendModel legend) {
12
		this.legend = legend;
13
	}
14
 
15
	@Override
16
	public String toString() {
17
		return "PluginsModel [legend=" + legend + "]";
18
	}
19
 
20
 
21
 
22
}