package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class RiesgosGeneralesDto {
	private String label;
	private BigInteger value;
	private String color;
	public RiesgosGeneralesDto() {
		super();
	}
	public RiesgosGeneralesDto(String label, BigInteger value, String color) {
		super();
		this.label = label;
		this.value = value;
		this.color = color;
	}
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public BigInteger getValue() {
		return value;
	}
	public void setValue(BigInteger value) {
		this.value = value;
	}
	public String getColor() {
		return color;
	}
	public void setColor(String color) {
		this.color = color;
	}
	
}
