2015-11-14 19:20:39 +01:00

14 lines
228 B
Java

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