1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 23:13:22 +00:00
comunicmobile/lib/models/notifications_settings.dart
2022-03-11 17:13:54 +01:00

14 lines
263 B
Dart

/// Notifications settings
///
/// @author Pierre Hubert
class NotificationsSettings {
bool allowConversations;
bool allowNotificationsSound;
NotificationsSettings({
required this.allowConversations,
required this.allowNotificationsSound,
});
}