cake_wallet/lib/view_model/auth_state.dart
2020-09-21 14:50:26 +03:00

8 lines
173 B
Dart

import 'package:cake_wallet/core/execution_state.dart';
class AuthenticationBanned extends ExecutionState {
AuthenticationBanned({this.error});
final String error;
}