16 lines
410 B
Dart
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;
|
|
}
|