package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ImpactReportSection1Dto {

	private String title;
	private ImpactContentScopeDto content;
	
	public ImpactReportSection1Dto(String title, ImpactContentScopeDto content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public ImpactContentScopeDto getContent() {
		return content;
	}

	public void setContent(ImpactContentScopeDto content) {
		this.content = content;
	}
	
}

