mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
18 lines
558 B
Java
18 lines
558 B
Java
package org.briarproject.api.blogs;
|
|
|
|
import org.briarproject.api.clients.SessionId;
|
|
import org.briarproject.api.contact.ContactId;
|
|
import org.briarproject.api.sharing.InvitationResponse;
|
|
import org.briarproject.api.sync.MessageId;
|
|
|
|
public class BlogInvitationResponse extends InvitationResponse {
|
|
|
|
public BlogInvitationResponse(MessageId id, SessionId sessionId,
|
|
ContactId contactId, boolean accept, long time, boolean local,
|
|
boolean sent, boolean seen, boolean read) {
|
|
|
|
super(id, sessionId, contactId, accept, time, local, sent, seen, read);
|
|
}
|
|
|
|
}
|