package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;

import javax.validation.constraints.NotNull;

public class ResultDto {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;

	public ResultDto() {
		super();
	}

	public ResultDto(@NotNull Integer id, @NotNull String name) {
		super();
		this.id = id;
		this.name = name;
	}

	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;
	}

	
}
