1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 23:13:22 +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 16:13:54 +00:00
});
}