Skip to content
Snippets Groups Projects
Commit 2fc9de95 authored by JotaJota96's avatar JotaJota96
Browse files

Merge branch 'carlosB' of...

parents f7bd3d3d 86ae93f5
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; package Logica.DataType;
/** import Logica.Enumerados.TipoValoracion;
*
* @author pc01
*/
public class DtValoracion { 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