mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 21:19:37 +00:00
12 lines
326 B
Dart
12 lines
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;
|
||
|
}
|