1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/models/notifications_settings.dart

14 lines
263 B
Dart
Raw Normal View History

/// Notifications settings
///
/// @author Pierre Hubert
class NotificationsSettings {
bool allowConversations;
bool allowNotificationsSound;
NotificationsSettings({
required this.allowConversations,
required this.allowNotificationsSound,
2022-03-11 17:13:54 +01:00
});
}