mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
8 lines
No EOL
183 B
Dart
8 lines
No EOL
183 B
Dart
import 'package:cw_core/wallet_type.dart';
|
|
|
|
class WalletDescription {
|
|
WalletDescription({required this.name, required this.type});
|
|
|
|
final String name;
|
|
final WalletType type;
|
|
} |