mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 17:57:36 +00:00
6 lines
No EOL
138 B
Dart
6 lines
No EOL
138 B
Dart
abstract class WalletCredentials {
|
|
const WalletCredentials({this.name, this.password});
|
|
|
|
final String name;
|
|
final String password;
|
|
} |