package com.dacrt.SBIABackend.dto;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class RiskFollowCloseDto2 {

	
	private Integer mitigation;
	private String responsable;
	private String enddate;
	
	public RiskFollowCloseDto2(Integer mitigation, String responsable, String enddate) {
		super();
		this.mitigation = mitigation;
		this.responsable = responsable;
		this.enddate = enddate;
	}

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

	public Integer getMitigation() {
		return mitigation;
	}

	public void setMitigation(Integer mitigation) {
		this.mitigation = mitigation;
	}

	public String getResponsable() {
		return responsable;
	}

	public void setResponsable(String responsable) {
		this.responsable = responsable;
	}

	public String getEnddate() {
		return enddate;
	}

	public void setEnddate(String enddate) {
		this.enddate = enddate;
	}
	
	
}
