mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
12 lines
322 B
Dart
12 lines
322 B
Dart
|
import 'package:comunic/lists/abstract_list.dart';
|
||
|
import 'package:comunic/models/group_membership.dart';
|
||
|
|
||
|
/// Group members list
|
||
|
///
|
||
|
/// @author Pierre Hubert
|
||
|
|
||
|
class GroupMembersList extends AbstractList<GroupMembership> {
|
||
|
/// Get the list of users in this set
|
||
|
Set<int> get usersID => map((f) => f.userID).toSet();
|
||
|
}
|