mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:22:37 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:openapi/api.dart';
 | |
| 
 | |
| class SyncEvent {
 | |
|   final SyncEntityType type;
 | |
|   final Object data;
 | |
|   final String ack;
 | |
| 
 | |
|   const SyncEvent({required this.type, required this.data, required this.ack});
 | |
| 
 | |
|   @override
 | |
|   String toString() => 'SyncEvent(type: $type, data: $data, ack: $ack)';
 | |
| }
 |