implement accepting/rejecting follow requests

closes #13
This commit is contained in:
sk
2022-11-12 03:01:59 +01:00
parent 5fa81e6c8a
commit 515592e8ea
7 changed files with 188 additions and 45 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;
}
}