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

14 lines
265 B
Dart
Raw Normal View History

/// Count the number of unread notifications
///
/// @author Pierre Hubert
class CountUnreadNotifications {
int? notifications;
int? conversations;
CountUnreadNotifications({
required int this.notifications,
required int this.conversations,
2022-03-11 15:36:42 +00:00
});
}