package com.infinite.focus.server.dashboard;

public class LabelAndCount {

	private String xLabel;
	private Integer count;
	
	public LabelAndCount(String xLabel, Integer count) {
		super();
		this.xLabel = xLabel;
		this.count = count;
	}
	
	public String getxLabel() {
		return xLabel;
	}
	public void setxLabel(String xLabel) {
		this.xLabel = xLabel;
	}
	public Integer getCount() {
		return count;
	}
	public void setCount(Integer count) {
		this.count = count;
	}
	
	
}
