mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-11 13:07:45 +01:00
24 lines
487 B
Java
24 lines
487 B
Java
package eu.kanade.mangafeed.events;
|
|
|
|
import eu.kanade.mangafeed.data.models.Chapter;
|
|
import eu.kanade.mangafeed.sources.base.Source;
|
|
|
|
public class SourceChapterEvent {
|
|
|
|
private Source source;
|
|
private Chapter chapter;
|
|
|
|
public SourceChapterEvent(Source source, Chapter chapter) {
|
|
this.source = source;
|
|
this.chapter = chapter;
|
|
}
|
|
|
|
public Source getSource() {
|
|
return source;
|
|
}
|
|
|
|
public Chapter getChapter() {
|
|
return chapter;
|
|
}
|
|
}
|