package com.dacrt.SBIABackend.dto;

public class ImpactReportSection5Dto {
	
	private String title;
	private ImpactContentSection5ReportDto content;
	
	public ImpactReportSection5Dto(String title, ImpactContentSection5ReportDto content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

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

	public ImpactContentSection5ReportDto getContent() {
		return content;
	}

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