komikku/app/src/main/java/eu/kanade/mangafeed/event/ChapterCountEvent.java

14 lines
228 B
Java
Raw Normal View History

2015-11-14 19:20:39 +01:00
package eu.kanade.mangafeed.event;
2015-10-19 17:27:41 +02:00
public class ChapterCountEvent {
private int count;
public ChapterCountEvent(int count) {
this.count = count;
}
public int getCount() {
return count;
}
}