mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* refactor(mobile): entities * store entity * refactor: models * remove domain * save all * bad refactor
		
			
				
	
	
		
			14 lines
		
	
	
		
			274 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			274 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // ignore_for_file: add-copy-with
 | |
| 
 | |
| sealed class MapEvent {
 | |
|   const MapEvent();
 | |
| }
 | |
| 
 | |
| class MapAssetsInBoundsUpdated extends MapEvent {
 | |
|   final List<String> assetRemoteIds;
 | |
| 
 | |
|   const MapAssetsInBoundsUpdated(this.assetRemoteIds);
 | |
| }
 | |
| 
 | |
| class MapCloseBottomSheet extends MapEvent {}
 |