Rev 29272 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.util.HashSet;import java.util.List;import com.spice.profitmandi.common.model.Data;import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;public class DataLeadModel {public HashSet<String> labels;public List<LeadStatusData> datasets;public HashSet<String> getLabels() {return labels;}public void setLabels(HashSet<String> labels) {this.labels = labels;}public List<LeadStatusData> getDatasets() {return datasets;}public void setDatasets(List<LeadStatusData> datasets) {this.datasets = datasets;}}