package com.dacrt.SBIABackend.dto;

import java.util.List;

public class RiskfollowupsDto {
	
	private RiskFollowOpenDto open;
	private List<RiskFollowactionsDto> actions;
	private RiskFollowCloseDto close;
	
	public RiskfollowupsDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public RiskfollowupsDto(RiskFollowOpenDto open, List<RiskFollowactionsDto> actions, RiskFollowCloseDto close) {
		super();
		this.open = open;
		this.actions = actions;
		this.close = close;
	}

	public RiskFollowOpenDto getOpen() {
		return open;
	}

	public void setOpen(RiskFollowOpenDto open) {
		this.open = open;
	}

	public List<RiskFollowactionsDto> getActions() {
		return actions;
	}

	public void setActions(List<RiskFollowactionsDto> actions) {
		this.actions = actions;
	}

	public RiskFollowCloseDto getClose() {
		return close;
	}

	public void setClose(RiskFollowCloseDto close) {
		this.close = close;
	}
	 
}
