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

12 lines
264 B
Dart
Raw Permalink Normal View History

2026-04-09 06:47:03 +00:00
class SettingsContent {
const SettingsContent({
required this.notificationsEnabled,
required this.hapticsEnabled,
required this.appVersionLabel,
});
final bool notificationsEnabled;
final bool hapticsEnabled;
final String appVersionLabel;
}