cb_prestige_qr/lib/features/settings/domain/entities/settings_content.dart
2026-04-20 16:14:46 +06:30

14 lines
325 B
Dart

class SettingsContent {
const SettingsContent({
required this.notificationsEnabled,
required this.hapticsEnabled,
required this.fingerEnabled,
required this.appVersionLabel,
});
final bool notificationsEnabled;
final bool hapticsEnabled;
final bool fingerEnabled;
final String appVersionLabel;
}