cake_wallet/lib/core/wallet_credentials.dart

10 lines
259 B
Dart

import 'package:cake_wallet/entities/wallet_info.dart';
abstract class WalletCredentials {
WalletCredentials({this.name, this.password, this.height, this.walletInfo});
final String name;
final int height;
String password;
WalletInfo walletInfo;
}