package com.dacrt.SBIABackend.dto;

import java.util.List;

public class LabelItemDtoReport {

	private String label;
	private List<LabelValueDtoReport> items;
	
	public LabelItemDtoReport(String label, List<LabelValueDtoReport> items) {
		super();
		this.label = label;
		this.items = items;
	}

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

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public List<LabelValueDtoReport> getItems() {
		return items;
	}

	public void setItems(List<LabelValueDtoReport> items) {
		this.items = items;
	}
	
}
