package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ImpactStaffSections5Dto {

	private List<String> units;
	private List<LabelValueDtoReport> chart;
	
	public ImpactStaffSections5Dto(List<String> units, List<LabelValueDtoReport> chart) {
		super();
		this.units = units;
		this.chart = chart;
	}

	public ImpactStaffSections5Dto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public List<String> getUnits() {
		return units;
	}

	public void setUnits(List<String> units) {
		this.units = units;
	}

	public List<LabelValueDtoReport> getChart() {
		return chart;
	}

	public void setChart(List<LabelValueDtoReport> chart) {
		this.chart = chart;
	}
	
}
