package com.dacrt.SBIABackend.dto;

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

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

	public String getTitle() {
		return title;
	}

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

	public Appresume2Dto getContent() {
		return content;
	}

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