package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ContinuitySection2Dto {
	
	private String title;
	
	private Channelresume2Dto content;

	public ContinuitySection2Dto(String title, Channelresume2Dto content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

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

	public Channelresume2Dto getContent() {
		return content;
	}

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

}
