mirror of
https://github.com/mihonapp/mihon.git
synced 2025-11-18 15:07:30 +01:00
Show chapter count
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package eu.kanade.mangafeed.util;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.METHOD})
|
||||
public @interface EventBusHook {}
|
||||
@@ -0,0 +1,13 @@
|
||||
package eu.kanade.mangafeed.util.events;
|
||||
|
||||
public class ChapterCountEvent {
|
||||
private int count;
|
||||
|
||||
public ChapterCountEvent(int count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user