package com.dacrt.SBIABackend.dto;

public class YesnoDto {
	private Integer id;
	
	private String value;

	public YesnoDto() {
		super();
	}

	public YesnoDto(Integer id, String value) {
		super();
		this.id = id;
		this.value = value;
	}

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