ente/lib/events/collection_updated_event.dart
2021-04-28 01:32:46 +05:30

8 lines
225 B
Dart

import 'package:photos/events/files_updated_event.dart';
class CollectionUpdatedEvent extends FilesUpdatedEvent {
final int collectionID;
CollectionUpdatedEvent(this.collectionID, updatedFiles) : super(updatedFiles);
}