Skip to content

Instantly share code, notes, and snippets.

@dusanstanojeviccs
Last active December 25, 2017 05:23
Show Gist options
  • Select an option

  • Save dusanstanojeviccs/f876519ab0b481fe26ba24d7541d81c2 to your computer and use it in GitHub Desktop.

Select an option

Save dusanstanojeviccs/f876519ab0b481fe26ba24d7541d81c2 to your computer and use it in GitHub Desktop.
Book.java
package models;
public class Book {
private int id;
private String title, description;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment