package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ContentExpectativaRtoDto {
	private String name;
	private List<SectionDto> sections;
	public ContentExpectativaRtoDto() {
		super();
	}
	public ContentExpectativaRtoDto(String name, List<SectionDto> sections) {
		super();
		this.name = name;
		this.sections = sections;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public List<SectionDto> getSections() {
		return sections;
	}
	public void setSections(List<SectionDto> sections) {
		this.sections = sections;
	}
	
}
