package com.dacrt.SBIABackend.dto;

import java.util.List;

public class DahboardcampaignContentDto {

	private String name;
	private List<LabelValueIntegerDto> sections;
	
	public DahboardcampaignContentDto(String name, List<LabelValueIntegerDto> sections) {
		super();
		this.name = name;
		this.sections = sections;
	}

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

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public List<LabelValueIntegerDto> getSections() {
		return sections;
	}

	public void setSections(List<LabelValueIntegerDto> sections) {
		this.sections = sections;
	}
	
	
}
