mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
6 lines
138 B
Dart
6 lines
138 B
Dart
|
abstract class WalletCredentials {
|
||
|
const WalletCredentials({this.name, this.password});
|
||
|
|
||
|
final String name;
|
||
|
final String password;
|
||
|
}
|