cake_wallet/lib/core/wallet_credentials.dart
2020-09-21 14:50:26 +03:00

10 lines
242 B
Dart

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