mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Simpler forum sharing UX.
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
package org.briarproject.api.messaging;
|
||||
|
||||
public class GroupStatus {
|
||||
|
||||
private final Group group;
|
||||
private final boolean subscribed, visibleToAll;
|
||||
|
||||
public GroupStatus(Group group, boolean subscribed, boolean visibleToAll) {
|
||||
this.group = group;
|
||||
this.subscribed = subscribed;
|
||||
this.visibleToAll = visibleToAll;
|
||||
}
|
||||
|
||||
public Group getGroup() {
|
||||
return group;
|
||||
}
|
||||
|
||||
public boolean isSubscribed() {
|
||||
return subscribed;
|
||||
}
|
||||
|
||||
public boolean isVisibleToAll() {
|
||||
return visibleToAll;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user