cake_wallet/lib/core/wallet_credentials.dart
2020-06-01 21:13:56 +03:00

6 lines
No EOL
138 B
Dart

abstract class WalletCredentials {
const WalletCredentials({this.name, this.password});
final String name;
final String password;
}