mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 04:07:51 -06:00
15 lines
353 B
Dart
15 lines
353 B
Dart
import 'package:hive/hive.dart';
|
|
import 'package:paperless_mobile/core/config/hive/hive_config.dart';
|
|
|
|
part 'user_settings.g.dart';
|
|
|
|
@HiveType(typeId: HiveTypeIds.userSettings)
|
|
class UserSettings with HiveObjectMixin {
|
|
@HiveField(0)
|
|
bool isBiometricAuthenticationEnabled;
|
|
|
|
UserSettings({
|
|
this.isBiometricAuthenticationEnabled = false,
|
|
});
|
|
}
|