mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
9 lines
241 B
Java
9 lines
241 B
Java
package org.briarproject.api.conversation;
|
|
|
|
import org.briarproject.api.introduction.IntroductionResponse;
|
|
|
|
public interface ConversationIntroductionResponseItem extends ConversationItem {
|
|
|
|
IntroductionResponse getIntroductionResponse();
|
|
}
|