mirror of
https://github.com/mihonapp/mihon.git
synced 2025-11-26 02:28:35 +01:00
Initial download manager
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package eu.kanade.mangafeed.events;
|
||||
|
||||
import eu.kanade.mangafeed.data.models.Chapter;
|
||||
import eu.kanade.mangafeed.data.models.Manga;
|
||||
|
||||
public class DownloadChapterEvent {
|
||||
private Manga manga;
|
||||
private Chapter chapter;
|
||||
|
||||
public DownloadChapterEvent(Manga manga, Chapter chapter) {
|
||||
this.manga = manga;
|
||||
this.chapter = chapter;
|
||||
}
|
||||
|
||||
public Manga getManga() {
|
||||
return manga;
|
||||
}
|
||||
|
||||
public Chapter getChapter() {
|
||||
return chapter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user