5 lines
82 B
Dart
5 lines
82 B
Dart
class RemoteSyncEvent {
|
|
final bool success;
|
|
|
|
RemoteSyncEvent(this.success);
|
|
}
|