mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
8 lines
182 B
Dart
8 lines
182 B
Dart
import 'package:cake_wallet/core/execution_state.dart';
|
|
|
|
class AuthenticationBanned extends ExecutionState {
|
|
AuthenticationBanned({required this.error});
|
|
|
|
final String error;
|
|
}
|
|
|