CakeWallet/lib/core/wallet_credentials.dart

11 lines
251 B
Dart
Raw Normal View History

2020-09-15 23:35:49 +03:00
import 'package:cake_wallet/src/domain/common/wallet_info.dart';
2020-06-01 21:13:56 +03:00
abstract class WalletCredentials {
2020-09-15 23:35:49 +03:00
WalletCredentials({this.name, this.password, this.height});
2020-06-01 21:13:56 +03:00
final String name;
2020-09-15 23:35:49 +03:00
final int height;
2020-06-20 10:10:00 +03:00
String password;
2020-09-15 23:35:49 +03:00
WalletInfo walletInfo;
}