package com.vgrec.espressoexamples.models;
/**
* @author vgrec, created on 3/18/15.
*/
public class Book {
private int id;
private String title;
private String author;
public Book(int id, String title, String author) {
this.id = id;
this.title = title;
this.author = author;
}
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public int getId() {
return id;
}
}