cb_prestige_qr/lib/features/settings/domain/entities/settings_content.dart
2026-04-23 11:22:41 +06:30

16 lines
401 B
Dart

import 'package:cb_prestige_qr/features/auth/domain/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;
}