mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
8 lines
No EOL
178 B
Dart
8 lines
No EOL
178 B
Dart
import 'package:cake_wallet/entities/wallet_type.dart';
|
|
|
|
class WalletDescription {
|
|
WalletDescription({this.name, this.type});
|
|
|
|
final String name;
|
|
final WalletType type;
|
|
} |