package com.trackingpremium.report.dto;

public class ReportResponse {
    private String label; // Nombre sin extensión para el combo
    private String value; // Nombre real del archivo .jasper
    private String type;  // Carpeta padre (ej: Consolidated, Invoice)

    public ReportResponse(String label, String value, String type) {
        this.label = label;
        this.value = value;
        this.type = type;
    }

    // Getters y Setters
    public String getLabel() { return label; }
    public String getValue() { return value; }
    public String getType() { return type; }
}