mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
10 lines
246 B
Dart
10 lines
246 B
Dart
import 'package:cw_core/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;
|
|
}
|