package com.dacrt.SBIABackend.dto;

public class RiskFactorsElementDto {
	
	private int id;
    private String name;
    private Integer weight;
    
	public RiskFactorsElementDto() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public RiskFactorsElementDto(int id, String name, Integer weight) {
		super();
		this.id = id;
		this.name = name;
		this.weight = weight;
	}

	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Integer getWeight() {
		return weight;
	}
	public void setWeight(Integer weight) {
		this.weight = weight;
	}
    
    

}
