package com.google.android.entity;
public class Quote {
private int quoteId;
private String quoteText;
private int categoryId;
private int authorId;
public int getQuoteId() {
return quoteId;
}
public void setQuoteId(int quoteId) {
this.quoteId = quoteId;
}
public String getQuoteText() {
return quoteText;
}
public void setQuoteText(String quoteText) {
this.quoteText = quoteText;
}
public int getCategoryId() {
return categoryId;
}
public void setCategoryId(int categoryId) {
this.categoryId = categoryId;
}
public int getAuthorId() {
return authorId;
}
public void setAuthorId(int authorId) {
this.authorId = authorId;
}
}
|