cake_wallet/lib/entities/wallet_description.dart

8 lines
165 B
Dart
Raw Normal View History

2021-12-24 12:37:24 +00:00
import 'package:cw_core/wallet_type.dart';
2020-01-04 19:31:52 +00:00
class WalletDescription {
2020-01-08 12:26:34 +00:00
WalletDescription({this.name, this.type});
2020-01-04 19:31:52 +00:00
final String name;
final WalletType type;
}