Update polls throughout the app when voting

This commit is contained in:
Grishka
2022-04-08 00:11:45 +03:00
parent d82616f871
commit cfcd50cb76
9 changed files with 122 additions and 149 deletions

View File

@@ -0,0 +1,13 @@
package org.joinmastodon.android.events;
import org.joinmastodon.android.model.Poll;
public class PollUpdatedEvent{
public String accountID;
public Poll poll;
public PollUpdatedEvent(String accountID, Poll poll){
this.accountID=accountID;
this.poll=poll;
}
}