package com.dacrt.SBIABackend.dto;

public class ResumenBiaSection1 {
	
	
	private String title;
	private ResumenBiaContentSection1 content;
	
	public ResumenBiaSection1(ResumenBiaContentSection1 content, String title) {
		super();
		this.content = content;
		this.title = title;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}
	
	public ResumenBiaSection1() {
		super();
		// TODO Auto-generated constructor stub
	}

	public ResumenBiaContentSection1 getContent() {
		return content;
	}

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