mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 12:29:31 +00:00
17 lines
338 B
Dart
17 lines
338 B
Dart
import 'package:cw_core/wallet_info.dart';
|
|
|
|
abstract class WalletCredentials {
|
|
WalletCredentials({
|
|
required this.name,
|
|
this.height,
|
|
this.walletInfo,
|
|
this.password,
|
|
this.derivationInfo,
|
|
});
|
|
|
|
final String name;
|
|
final int? height;
|
|
String? password;
|
|
WalletInfo? walletInfo;
|
|
DerivationInfo? derivationInfo;
|
|
}
|