package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ContentBlockDto {

	private String name;
    private List<GlobalSectionDto> sections;
    
	public ContentBlockDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public ContentBlockDto(String name, List<GlobalSectionDto> sections) {
		super();
		this.name = name;
		this.sections = sections;
	}

	public String getName() {
		return name;
	}

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

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

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