mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
17 lines
352 B
Dart
17 lines
352 B
Dart
|
|
|
|
/// Notifications settings
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class NotificationsSettings {
|
|
bool allowConversations;
|
|
bool allowNotificationsSound;
|
|
|
|
NotificationsSettings({
|
|
required this.allowConversations,
|
|
required this.allowNotificationsSound,
|
|
}) : assert(allowConversations != null),
|
|
assert(allowNotificationsSound != null);
|
|
}
|