CakeWallet/lib/core/wallet_credentials.dart
2020-09-15 23:35:49 +03:00

10 lines
251 B
Dart

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