package com.infinite.focus.server.dashboard;

public class LabelAndValueScore {

	private String xLabel;
	private Double value;
	private double score;

	public LabelAndValueScore(String xLabel, Double value, double score) {
		super();
		this.xLabel = xLabel;
		this.value = value;
		this.score = score;
	}

	public String getxLabel() {
		return xLabel;
	}

	public void setxLabel(String xLabel) {
		this.xLabel = xLabel;
	}

	public Double getValue() {
		return value;
	}

	public void setValue(Double value) {
		this.value = value;
	}

	public double getScore() {
		return score;
	}

	public void setScore(double score) {
		this.score = score;
	}
}
