/* * Copyright 2015, Tanmay Parikh * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.tanmay.blip.models; public class Comic { private String month; private int num; private String link; private String year; private String news; private String safe_title; private String transcript; private String alt; private String img; private String title; private String day; private transient boolean favourite; public String getMonth() { return month; } public void setMonth(String month) { this.month = month; } public int getNum() { return num; } public void setNum(int num) { this.num = num; } public String getLink() { return link; } public void setLink(String link) { this.link = link; } public String getYear() { return year; } public void setYear(String year) { this.year = year; } public String getNews() { return news; } public void setNews(String news) { this.news = news; } public String getSafe_title() { return safe_title; } public void setSafe_title(String safe_title) { this.safe_title = safe_title; } public String getTranscript() { return transcript; } public void setTranscript(String transcript) { this.transcript = transcript; } public String getAlt() { return alt; } public void setAlt(String alt) { this.alt = alt; } public String getImg() { return img; } public void setImg(String img) { this.img = img; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDay() { return day; } public void setDay(String day) { this.day = day; } public boolean isFavourite() { return favourite; } public void setFavourite(boolean favourite) { this.favourite = favourite; } }