package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection5 {

	private String title;
	private ResumenBiaContentSection5 content;
	
	public ResumenBiaSection5(String title, ResumenBiaContentSection5 content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

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

	public ResumenBiaContentSection5 getContent() {
		return content;
	}

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

