Allow reading downloaded chapters

This commit is contained in:
inorichi
2015-11-03 21:27:56 +01:00
parent 62ae572c72
commit 11638ae917
20 changed files with 93 additions and 19 deletions
@@ -0,0 +1,30 @@
package eu.kanade.mangafeed.events;
import eu.kanade.mangafeed.data.models.Chapter;
import eu.kanade.mangafeed.data.models.Manga;
import eu.kanade.mangafeed.sources.base.Source;
public class SourceMangaChapterEvent {
private Source source;
private Manga manga;
private Chapter chapter;
public SourceMangaChapterEvent(Source source, Manga manga, Chapter chapter) {
this.source = source;
this.manga = manga;
this.chapter = chapter;
}
public Source getSource() {
return source;
}
public Manga getManga() {
return manga;
}
public Chapter getChapter() {
return chapter;
}
}