package com.dacrt.SBIABackend.dto;

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

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

	public String getTitle() {
		return title;
	}

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

	public ResumenBiaContentSection2 getContent() {
		return content;
	}

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