implement notification badge using markers

This commit is contained in:
sk
2023-03-21 00:52:20 +01:00
parent bec47f40f7
commit ff272179e7
15 changed files with 173 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
package org.joinmastodon.android.events;
public class AllNotificationsSeenEvent {
}

View File

@@ -0,0 +1,8 @@
package org.joinmastodon.android.events;
public class NotificationReceivedEvent {
public String id;
public NotificationReceivedEvent(String id) {
this.id = id;
}
}