package com.dacrt.SBIABackend.dto;

public class ImpactContentResponseDto {

	
	private String title;
	private ImpactContentSection2Dto content;
	
	public ImpactContentResponseDto(String title, ImpactContentSection2Dto content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

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

	public ImpactContentSection2Dto getContent() {
		return content;
	}

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