package com.dacrt.SBIABackend.dto.requestDto;

import java.util.List;

public class RiskFactorRequestDto {

	
	private int status;
    private String name;
    private String category;
    private int scenery;
    private List<RiskFactorElementDto> elements; // Arreglo de objetos
    
	public RiskFactorRequestDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public RiskFactorRequestDto(int status, String name, String category, int scenery,
			List<RiskFactorElementDto> elements) {
		super();
		this.status = status;
		this.name = name;
		this.category = category;
		this.scenery = scenery;
		this.elements = elements;
	}

	public int getStatus() {
		return status;
	}

	public void setStatus(int status) {
		this.status = status;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getCategory() {
		return category;
	}

	public void setCategory(String category) {
		this.category = category;
	}

	public int getScenery() {
		return scenery;
	}

	public void setScenery(int scenery) {
		this.scenery = scenery;
	}

	public List<RiskFactorElementDto> getElements() {
		return elements;
	}

	public void setElements(List<RiskFactorElementDto> elements) {
		this.elements = elements;
	}
    
}
