mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
12 lines
289 B
Java
12 lines
289 B
Java
package org.briarproject.api.conversation;
|
|
|
|
import org.briarproject.api.conversation.ConversationItem.Partial;
|
|
import org.briarproject.api.messaging.PrivateMessageHeader;
|
|
|
|
public interface ConversationMessageItem extends Partial {
|
|
|
|
PrivateMessageHeader getHeader();
|
|
|
|
byte[] getBody();
|
|
}
|