package com.dacrt.SBIABackend.dto;

import java.util.List;
import java.util.Map;

public class ScenaryTableDto {
    private List<ScenaryCellDto> header;
    private List<Map<String, Object>> rows; // Formato de mapa dinámico { "id": X, "col1": { "id": 1, "value": "..." } }

    public ScenaryTableDto() {}

    public List<ScenaryCellDto> getHeader() { return header; }
    public void setHeader(List<ScenaryCellDto> header) { this.header = header; }
    public List<Map<String, Object>> getRows() { return rows; }
    public void setRows(List<Map<String, Object>> rows) { this.rows = rows; }
}