* and open the template in the editor.
*/
package com.lcda.pila.modelo;
/**
*
* @author geovanny9596
*/
public class Plato {
private String identificador;
private String color;
public String getIdentificador() {
return identificador;
}
public void setIdentificador(String identificador) {
this.identificador = identificador;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
}