cb_prestige_qr/lib/features/settings/domain/entities/settings_content.dart

14 lines
325 B
Dart
Raw Normal View History

2026-04-09 06:47:03 +00:00
class SettingsContent {
const SettingsContent({
required this.notificationsEnabled,
required this.hapticsEnabled,
2026-04-20 09:44:46 +00:00
required this.fingerEnabled,
2026-04-09 06:47:03 +00:00
required this.appVersionLabel,
});
final bool notificationsEnabled;
final bool hapticsEnabled;
2026-04-20 09:44:46 +00:00
final bool fingerEnabled;
2026-04-09 06:47:03 +00:00
final String appVersionLabel;
}