package com.dacrt.SBIABackend.dto;

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

	public LineaDto() {
		super();
	}

	public LineaDto(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;
	}
	
	
}
