mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
14 lines
352 B
Dart
14 lines
352 B
Dart
|
import 'package:cake_wallet/src/screens/setup_2fa/setup_2fa_enter_code_page.dart';
|
||
|
|
||
|
class TotpAuthArgumentsModel {
|
||
|
final bool? isForSetup;
|
||
|
final bool? isClosable;
|
||
|
final OnTotpAuthenticationFinished? onTotpAuthenticationFinished;
|
||
|
|
||
|
TotpAuthArgumentsModel({
|
||
|
this.isForSetup,
|
||
|
this.isClosable,
|
||
|
this.onTotpAuthenticationFinished,
|
||
|
});
|
||
|
}
|