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

Merge branch 'carlosB' of...

parents f7bd3d3d 86ae93f5
Branches
Tags
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.
Please register or to comment