refactor(ReblogDeletedEvent.java): add back ReblogDeletedEvent.java

This commit is contained in:
LucasGGamerM
2025-04-16 12:47:41 -03:00
parent e8db6c5f39
commit 043cfb9171

View File

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