package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;

public class RiskFactorsElementDto {
	
	private int id;
    private String name;
    private BigDecimal weight;
    
	public RiskFactorsElementDto() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public RiskFactorsElementDto(int id, String name, BigDecimal 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 BigDecimal getWeight() {
		return weight;
	}
	public void setWeight(BigDecimal weight) {
		this.weight = weight;
	}
    
    

}
