package com.infinite.focus.server.dashboard;

public class LabelAndValue {

	private String xLabel;
	private double value;

	public LabelAndValue(String xLabel, double value) {
		super();
		this.xLabel = xLabel;
		this.value = value;
	}

	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;
	}
}
