mastodon-app-ufficiale-android/mastodon/src/main/java/org/joinmastodon/android/events/NotificationRequestResponde...

11 lines
274 B
Java

package org.joinmastodon.android.events;
public class NotificationRequestRespondedEvent{
public final String accountID, requestID;
public NotificationRequestRespondedEvent(String accountID, String requestID){
this.accountID=accountID;
this.requestID=requestID;
}
}