mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -07:00
05cf5d57a9
* feature(mobile): no longer wait for background backup in settings migrate all Hive boxes required for the backup process to Isar * add final modifier
12 lines
253 B
Dart
12 lines
253 B
Dart
import 'package:immich_mobile/utils/hash.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
part 'duplicated_asset.model.g.dart';
|
|
|
|
@Collection(inheritance: false)
|
|
class DuplicatedAsset {
|
|
String id;
|
|
DuplicatedAsset(this.id);
|
|
Id get isarId => fastHash(id);
|
|
}
|