ente/lib/events/remote_sync_event.dart

6 lines
82 B
Dart
Raw Normal View History

2020-04-30 15:09:41 +00:00
class RemoteSyncEvent {
final bool success;
RemoteSyncEvent(this.success);
}