cb_prestige_qr/lib/features/settings/domain/entities/settings_content.dart
2026-04-27 15:38:26 +06:30

16 lines
410 B
Dart

import 'package:cb_prestige_qr/features/auth/domain/entities/user_profile.dart';
class SettingsContent {
const SettingsContent({
required this.notificationsEnabled,
required this.hapticsEnabled,
required this.appVersionLabel,
required this.userProfile,
});
final bool notificationsEnabled;
final bool hapticsEnabled;
final String appVersionLabel;
final UserProfile userProfile;
}