dev
dart 8 lines 182 Bytes
Raw
1 import 'package:cw_core/wallet_type.dart';
2
3 class WalletDescription {
4 WalletDescription({required this.name, required this.type});
5
6 final String name;
7 final WalletType type;
8 }