Skip to content
Snippets Groups Projects
Commit 86ae93f5 authored by Alfa-J's avatar Alfa-J
Browse files

DataType de Valoracion hecho

parent dfdf60a8
No related branches found
No related tags found
No related merge requests found
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Logica.DataType;
/**
*
* @author pc01
*/
import Logica.Enumerados.TipoValoracion;
public class DtValoracion {
private TipoValoracion val;
private String nickname;
public DtValoracion(TipoValoracion val, String nickname) {
this.val = val;
this.nickname = nickname;
}
public String getNickname() {
return nickname;
}
public TipoValoracion getVal() {
return val;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment