package com.dacrt.SBIABackend.dto;

import java.util.List;

public class TableDto {
	private List<ValueDto2> header;
	private List<RowsDto> rows;
	public TableDto() {
		super();
	}
	public TableDto(List<ValueDto2> header, List<RowsDto> rows) {
		super();
		this.header = header;
		this.rows = rows;
	}
	public List<ValueDto2> getHeader() {
		return header;
	}
	public void setHeader(List<ValueDto2> header) {
		this.header = header;
	}
	public List<RowsDto> getRows() {
		return rows;
	}
	public void setRows(List<RowsDto> rows) {
		this.rows = rows;
	}
	
}
