package com.dacrt.SBIABackend.dto;

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

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

	public String getTitle() {
		return title;
	}

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

	public ImpactContentReportDto getContent() {
		return content;
	}

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