immich/mobile/lib/domain/models/sync_event.model.dart
shenlong 2d05a5482f
refactor: logger service and remove dynamic (#17733)
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2025-06-08 22:01:31 -05:00

13 lines
293 B
Dart

import 'package:openapi/api.dart';
class SyncEvent {
final SyncEntityType type;
final Object 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)';
}