package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection9 {

	
	private String title;
	private ResumenBiaContentSection9 content;
	
	public ResumenBiaSection9(ResumenBiaContentSection9 content, String title) {
		super();
		this.content = content;
		this.title = title;
	}

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

	public String getTitle() {
		return title;
	}

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

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