mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 13:37:58 +00:00
18 lines
448 B
Dart
18 lines
448 B
Dart
import 'package:photos/events/files_updated_event.dart';
|
|
import 'package:photos/models/file/file.dart';
|
|
|
|
class CollectionUpdatedEvent extends FilesUpdatedEvent {
|
|
final int? collectionID;
|
|
|
|
CollectionUpdatedEvent(
|
|
this.collectionID,
|
|
List<EnteFile> updatedFiles,
|
|
String? source, {
|
|
EventType? type,
|
|
}) : super(
|
|
updatedFiles,
|
|
type: type ?? EventType.addedOrUpdated,
|
|
source: source ?? "",
|
|
);
|
|
}
|