package com.dacrt.SBIABackend.dto.requestDto;

public class RiskFactorElementDto {

	private Integer id;
    private String name;
    private int weight;
    
	public RiskFactorElementDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public RiskFactorElementDto(Integer id, String name, int weight) {
		super();
		this.id = id;
		this.name = name;
		this.weight = weight;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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

	public int getWeight() {
		return weight;
	}

	public void setWeight(int weight) {
		this.weight = weight;
	}   
}
