package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection4 {

	private String title;
	private ResumenBiaContentSection4 content;
	
	public ResumenBiaSection4(String title, ResumenBiaContentSection4 content) {
		super();
		this.title = title;
		this.content = content;
	}

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

	public String getTitle() {
		return title;
	}

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

	public ResumenBiaContentSection4 getContent() {
		return content;
	}

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