mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-02 02:17:39 +00:00
8 lines
No EOL
187 B
Dart
8 lines
No EOL
187 B
Dart
import 'package:cake_wallet/src/domain/common/wallet_type.dart';
|
|
|
|
class WalletDescription {
|
|
WalletDescription({this.name, this.type});
|
|
|
|
final String name;
|
|
final WalletType type;
|
|
} |