mirror-immich/mobile/lib/models/map/map_event.model.dart

14 lines
271 B
Dart

sealed class MapEvent {
const MapEvent();
}
class MapAssetsInBoundsUpdated extends MapEvent {
final List<String> assetRemoteIds;
const MapAssetsInBoundsUpdated(this.assetRemoteIds);
}
class MapCloseBottomSheet extends MapEvent {
const MapCloseBottomSheet();
}