package com.dacrt.SBIABackend.dto;

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

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

	public String getTitle() {
		return title;
	}

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

	public ContentSection1Dto getContent() {
		return content;
	}

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

}
