package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;

public class LabelValueDtoReport {
	
	private String label;
	private BigDecimal value;
	public LabelValueDtoReport() {
		super();
	}
	public LabelValueDtoReport(String label, BigDecimal value) {
		super();
		this.label = label;
		this.value = value;
	}
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public BigDecimal getValue() {
		return value;
	}
	public void setValue(BigDecimal value) {
		this.value = value;
	}
		
}
