cake_wallet/cw_nano/lib/nano_wallet_keys.dart
2023-07-31 11:39:22 -04:00

5 lines
99 B
Dart

class NanoWalletKeys {
const NanoWalletKeys({required this.seedKey});
final String seedKey;
}