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