Rev 27706 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;import java.util.List;public class DatasetModel {public String label;public List<String> backgroundColor;public List<Double> data;public List<String> getBackgroundColor() {return backgroundColor;}public void setBackgroundColor(List<String> backgroundColor) {this.backgroundColor = backgroundColor;}public String getLabel() {return label;}public void setLabel(String label) {this.label = label;}public List<Double> getData() {return data;}public void setData(List<Double> data) {this.data = data;}}