mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
12 lines
373 B
Dart
12 lines
373 B
Dart
import 'package:comunic/lists/abstract_list.dart';
|
|
import 'package:comunic/models/unread_conversation.dart';
|
|
|
|
/// List of unread conversations
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class UnreadConversationsList extends AbstractList<UnreadConversation> {
|
|
/// Get the ID of the users included in this list
|
|
Set<int> get usersID => new Set<int>()..addAll(map((f) => f.userID));
|
|
}
|