implement pinning and unpinning posts

This commit is contained in:
sk
2022-05-06 19:07:51 +02:00
parent a3bea6ad24
commit 9beb04b01d
8 changed files with 93 additions and 1 deletions

View File

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