mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
14 lines
275 B
Dart
14 lines
275 B
Dart
import 'package:cw_core/wallet_info.dart';
|
|
|
|
abstract class WalletCredentials {
|
|
WalletCredentials({
|
|
required this.name,
|
|
this.height,
|
|
this.walletInfo,
|
|
this.password});
|
|
|
|
final String name;
|
|
final int? height;
|
|
String? password;
|
|
WalletInfo? walletInfo;
|
|
}
|