mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
14 lines
321 B
Dart
14 lines
321 B
Dart
|
|
import 'package:openapi/api.dart';
|
||
|
|
|
||
|
|
class SyncEvent {
|
||
|
|
final SyncEntityType type;
|
||
|
|
// ignore: avoid-dynamic
|
||
|
|
final dynamic data;
|
||
|
|
final String ack;
|
||
|
|
|
||
|
|
const SyncEvent({required this.type, required this.data, required this.ack});
|
||
|
|
|
||
|
|
@override
|
||
|
|
String toString() => 'SyncEvent(type: $type, data: $data, ack: $ack)';
|
||
|
|
}
|