1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/models/count_unread_notifications.dart

15 lines
309 B
Dart

/// Count the number of unread notifications
///
/// @author Pierre Hubert
class CountUnreadNotifications {
int notifications;
int conversations;
CountUnreadNotifications({
this.notifications,
this.conversations,
}) : assert(notifications != null),
assert(conversations != null);
}