immich/mobile/lib/domain/models/sync_event.model.dart

13 lines
293 B
Dart
Raw Normal View History

2026-02-02 15:06:40 +01:00
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)';
}