Merge branch 'feature/follow-requests' into fork

This commit is contained in:
sk
2022-11-12 03:03:14 +01:00
9 changed files with 225 additions and 26 deletions

View File

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