package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class IdValueDto {
	
	@NotNull
	private Integer id;
	
	@NotNull
	private String value;

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

	public IdValueDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public Integer getId() {
		return id;
	}

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

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}
	
}
