package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection6 {

	
	private String title;
	private ResumenBiaContentSection6 content;
	
	public ResumenBiaSection6(ResumenBiaContentSection6 content, String title) {
		super();
		this.content = content;
		this.title = title;
	}

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

	public String getTitle() {
		return title;
	}

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

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

}
