mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
* enable DCM in CI * chore: up version * chore: up version --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
12 lines
239 B
Dart
12 lines
239 B
Dart
sealed class MapEvent {
|
|
const MapEvent();
|
|
}
|
|
|
|
class MapAssetsInBoundsUpdated extends MapEvent {
|
|
final List<String> assetRemoteIds;
|
|
|
|
const MapAssetsInBoundsUpdated(this.assetRemoteIds);
|
|
}
|
|
|
|
class MapCloseBottomSheet extends MapEvent {}
|