package com.dacrt.SBIABackend.dto;

public class ReporteRegulatorioSeleccionarDto {
	private Integer action;
	private Integer reportid;
	private String filter;
	public ReporteRegulatorioSeleccionarDto() {
		super();
	}
	public ReporteRegulatorioSeleccionarDto(Integer action, Integer reportid, String filter) {
		super();
		this.action = action;
		this.reportid = reportid;
		this.filter = filter;
	}
	public Integer getAction() {
		return action;
	}
	public void setAction(Integer action) {
		this.action = action;
	}
	public Integer getReportid() {
		return reportid;
	}
	public void setReportid(Integer reportid) {
		this.reportid = reportid;
	}
	public String getFilter() {
		return filter;
	}
	public void setFilter(String filter) {
		this.filter = filter;
	}
}
