Subversion Repositories SmartDukaan

Rev

Rev 29431 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29272 manish 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.util.HashSet;
4
import java.util.List;
5
 
6
import com.spice.profitmandi.common.model.Data;
7
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
8
 
9
public class DataLeadModel {
10
 
11
	public HashSet<LeadStatus> labels;
12
	public List<LeadStatusData> datasets;
13
 
14
 
15
 
16
	public HashSet<LeadStatus> getLabels() {
17
		return labels;
18
	}
19
	public void setLabels(HashSet<LeadStatus> labels) {
20
		this.labels = labels;
21
	}
22
	public List<LeadStatusData> getDatasets() {
23
		return datasets;
24
	}
25
	public void setDatasets(List<LeadStatusData> datasets) {
26
		this.datasets = datasets;
27
	}
28
 
29
 
30
 
31
 
32
}