Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 19, 2019 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/2be5d358857f33aa2c5c373fbb1e69a2 to your computer and use it in GitHub Desktop.
Save parzibyte/2be5d358857f33aa2c5c373fbb1e69a2 to your computer and use it in GitHub Desktop.
public class Raza {
private String nombre, pais;
public Raza(String nombre, String pais) {
this.nombre = nombre;
this.pais = pais;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public String getPais() {
return pais;
}
public void setPais(String pais) {
this.pais = pais;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment