mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
19 lines
345 B
Java
19 lines
345 B
Java
package org.briarproject.android.contact;
|
|
|
|
import org.briarproject.api.sync.MessageId;
|
|
|
|
abstract class ConversationNoticeItem extends ConversationItem {
|
|
|
|
private final String text;
|
|
|
|
public ConversationNoticeItem(MessageId id, String text, long time) {
|
|
super(id, time);
|
|
|
|
this.text = text;
|
|
}
|
|
|
|
public String getText() {
|
|
return text;
|
|
}
|
|
}
|