package com.dacrt.SBIABackend.dto;

public class RiskMatrixReportDto {

	private String label;
    private Integer value;
    private String color;
    private String levelLabel; // Agrega esto

    // Constructor Vacío
    public RiskMatrixReportDto() {
    }

    // Constructor con parámetros
    public RiskMatrixReportDto(String label, Integer value, String color) {
        this.label = label;
        this.value = value;
        this.color = color;
    }
   

    public String getLevelLabel() {
        return levelLabel;
    }

    public void setLevelLabel(String levelLabel) {
        this.levelLabel = levelLabel;
    }

    // Getters y Setters
    public String getLabel() { return label; }
    public void setLabel(String label) { this.label = label; }

    public Integer getValue() { return value; }
    public void setValue(Integer value) { this.value = value; }

    public String getColor() { return color; }
    public void setColor(String color) { this.color = color; }
}
