mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* Fixed app not resuming backup after closing and reopening the app * Fixed cosmetic effect of backup button doesn't change state right away after pressing start backup * Fixed grammar * Fixed deep copy problem that cause incorrect asset count when backing up * Format code
25 lines
417 B
Dart
25 lines
417 B
Dart
import 'package:hive/hive.dart';
|
|
|
|
part 'hive_saved_login_info.model.g.dart';
|
|
|
|
@HiveType(typeId: 0)
|
|
class HiveSavedLoginInfo {
|
|
@HiveField(0)
|
|
String email;
|
|
|
|
@HiveField(1)
|
|
String password;
|
|
|
|
@HiveField(2)
|
|
String serverUrl;
|
|
|
|
@HiveField(3)
|
|
bool isSaveLogin;
|
|
|
|
HiveSavedLoginInfo(
|
|
{required this.email,
|
|
required this.password,
|
|
required this.serverUrl,
|
|
required this.isSaveLogin});
|
|
}
|