mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Simpler forum sharing UX.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package org.briarproject.android.groups;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.briarproject.api.Contact;
|
||||
import org.briarproject.api.messaging.Group;
|
||||
|
||||
class AvailableGroupsItem {
|
||||
|
||||
private final GroupContacts groupContacts;
|
||||
|
||||
AvailableGroupsItem(GroupContacts groupContacts) {
|
||||
this.groupContacts = groupContacts;
|
||||
}
|
||||
|
||||
Group getGroup() {
|
||||
return groupContacts.getGroup();
|
||||
}
|
||||
|
||||
Collection<Contact> getContacts() {
|
||||
return groupContacts.getContacts();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user