package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection7 {

	
	private String title;
	private ResumenBiaContentSection7 content;
	
	public ResumenBiaSection7(ResumenBiaContentSection7 content, String title) {
		super();
		this.content = content;
		this.title = title;
	}

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

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}
	
	public ResumenBiaContentSection7 getContent() {
		return content;
	}

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

