mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	* 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);
 | 
						|
}
 |