CakeWallet/lib/src/domain/common/wallet_description.dart

8 lines
185 B
Dart
Raw Normal View History

2020-01-04 21:31:52 +02:00
import 'package:cake_wallet/src/domain/common/wallet_type.dart';
class WalletDescription {
final String name;
final WalletType type;
WalletDescription({this.name, this.type});
}