mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
14 lines
265 B
Dart
14 lines
265 B
Dart
/// Count the number of unread notifications
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class CountUnreadNotifications {
|
|
int? notifications;
|
|
int? conversations;
|
|
|
|
CountUnreadNotifications({
|
|
required int this.notifications,
|
|
required int this.conversations,
|
|
});
|
|
}
|