mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
12 lines
294 B
Dart
12 lines
294 B
Dart
|
class MoneroWalletKeys {
|
||
|
const MoneroWalletKeys(
|
||
|
{this.privateSpendKey,
|
||
|
this.privateViewKey,
|
||
|
this.publicSpendKey,
|
||
|
this.publicViewKey});
|
||
|
|
||
|
final String publicViewKey;
|
||
|
final String privateViewKey;
|
||
|
final String publicSpendKey;
|
||
|
final String privateSpendKey;
|
||
|
}
|