Files
mihon-bookoasis/app/src/main/java/eu/kanade/tachiyomi/event/ChapterCountEvent.java
T
2016-01-15 15:18:19 +01:00

14 lines
228 B
Java

package eu.kanade.tachiyomi.event;
public class ChapterCountEvent {
private int count;
public ChapterCountEvent(int count) {
this.count = count;
}
public int getCount() {
return count;
}
}