package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;

public class LabelValueIntegerDto {

	
	private String label;
	private int value;
	
	public LabelValueIntegerDto(String label, int value) {
		super();
		this.label = label;
		this.value = value;
	}

	public LabelValueIntegerDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public int getValue() {
		return value;
	}

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