package com.dacrt.SBIABackend.dto;

import java.util.List;

public class RowsDto {
	private Integer id;
	private List<ValueDto2> cols;
	public RowsDto() {
		super();
	}
	public RowsDto(Integer id, List<ValueDto2> cols) {
		super();
		this.id = id;
		this.cols = cols;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public List<ValueDto2> getCols() {
		return cols;
	}
	public void setCols(List<ValueDto2> cols) {
		this.cols = cols;
	}
	

}
