mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 11:49:04 +01:00
19 lines
281 B
Java
19 lines
281 B
Java
package org.briarproject.android.groups;
|
|
|
|
import org.briarproject.api.messaging.Group;
|
|
|
|
class GroupItem {
|
|
|
|
static final GroupItem NEW = new GroupItem(null);
|
|
|
|
private final Group group;
|
|
|
|
GroupItem(Group group) {
|
|
this.group = group;
|
|
}
|
|
|
|
Group getGroup() {
|
|
return group;
|
|
}
|
|
}
|