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

16 lines
410 B
Dart
Raw Permalink Normal View History

2026-04-27 09:08:26 +00:00
import 'package:cb_prestige_qr/features/auth/domain/entities/user_profile.dart';
2026-04-23 04:52:41 +00:00
2026-04-09 06:47:03 +00:00
class SettingsContent {
const SettingsContent({
required this.notificationsEnabled,
required this.hapticsEnabled,
required this.appVersionLabel,
2026-04-23 04:52:41 +00:00
required this.userProfile,
2026-04-09 06:47:03 +00:00
});
final bool notificationsEnabled;
final bool hapticsEnabled;
final String appVersionLabel;
2026-04-23 04:52:41 +00:00
final UserProfile userProfile;
2026-04-09 06:47:03 +00:00
}