mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
12 lines
No EOL
326 B
Dart
12 lines
No EOL
326 B
Dart
class ZanoWalletKeys {
|
|
const ZanoWalletKeys(
|
|
{required this.privateSpendKey,
|
|
required this.privateViewKey,
|
|
required this.publicSpendKey,
|
|
required this.publicViewKey});
|
|
|
|
final String publicViewKey;
|
|
final String privateViewKey;
|
|
final String publicSpendKey;
|
|
final String privateSpendKey;
|
|
} |