mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
17 lines
358 B
Dart
17 lines
358 B
Dart
import 'package:comunic/models/conversation.dart';
|
|
import 'package:comunic/models/conversation_message.dart';
|
|
|
|
/// Unread conversation information
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class UnreadConversation {
|
|
final Conversation conv;
|
|
final ConversationMessage message;
|
|
|
|
const UnreadConversation({
|
|
required this.conv,
|
|
required this.message,
|
|
});
|
|
}
|