CakeWallet/lib/entities/wallet_description.dart

8 lines
183 B
Dart
Raw Normal View History

2021-12-24 14:37:24 +02:00
import 'package:cw_core/wallet_type.dart';
2020-01-04 21:31:52 +02:00
class WalletDescription {
2022-10-12 13:09:57 -04:00
WalletDescription({required this.name, required this.type});
2020-01-08 14:26:34 +02:00
2020-01-04 21:31:52 +02:00
final String name;
final WalletType type;
}