mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
14 lines
371 B
Java
14 lines
371 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.contact.ContactId;
|
|
import org.briarproject.api.sharing.InvitationResponse;
|
|
|
|
public class GroupInvitationResponseReceivedEvent
|
|
extends InvitationResponseReceivedEvent {
|
|
|
|
public GroupInvitationResponseReceivedEvent(ContactId contactId,
|
|
InvitationResponse response) {
|
|
super(contactId, response);
|
|
}
|
|
}
|