Skip to content

Instantly share code, notes, and snippets.

@DouglasOliveira10
Last active October 7, 2018 20:31
Show Gist options
  • Save DouglasOliveira10/49d9c20728d2328a07194eabfec86546 to your computer and use it in GitHub Desktop.
Save DouglasOliveira10/49d9c20728d2328a07194eabfec86546 to your computer and use it in GitHub Desktop.
public class Livro {
private Long id;
private String nome;
public Livro(Long id, String nome) {
super();
this.id = id;
this.nome = nome;
}
getters and setters...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment