mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
8 lines
173 B
Dart
8 lines
173 B
Dart
import 'package:cake_wallet/core/execution_state.dart';
|
|
|
|
class AuthenticationBanned extends ExecutionState {
|
|
AuthenticationBanned({this.error});
|
|
|
|
final String error;
|
|
}
|
|
|