CakeWallet/lib/entities/wallet_description.dart

8 lines
178 B
Dart
Raw Normal View History

2020-09-21 14:50:26 +03:00
import 'package:cake_wallet/entities/wallet_type.dart';
2020-01-04 21:31:52 +02:00
class WalletDescription {
2020-01-08 14:26:34 +02:00
WalletDescription({this.name, this.type});
2020-01-04 21:31:52 +02:00
final String name;
final WalletType type;
}