cb_prestige_qr/lib/features/settings/domain/entities/settings_content.dart
2026-04-09 13:17:03 +06:30

12 lines
264 B
Dart

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