package com.dacrt.SBIABackend.dto;

import java.util.List;

public class LabelItemDtoReport2 {
	
	private String label;
	private List<LabelValueDtoReport2> items;
	
	public LabelItemDtoReport2(String label, List<LabelValueDtoReport2> items) {
		super();
		this.label = label;
		this.items = items;
	}

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

	public String getLabel() {
		return label;
	}

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

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

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

}
