mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 13:37:58 +00:00
11 lines
254 B
Dart
11 lines
254 B
Dart
import "dart:collection";
|
|
|
|
import "package:photos/events/event.dart";
|
|
import "package:photos/models/backup/backup_item.dart";
|
|
|
|
class BackupUpdatedEvent extends Event {
|
|
final LinkedHashMap<String, BackupItem> items;
|
|
|
|
BackupUpdatedEvent(this.items);
|
|
}
|