mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
8 lines
185 B
Dart
8 lines
185 B
Dart
|
import 'package:cake_wallet/src/domain/common/wallet_type.dart';
|
||
|
|
||
|
class WalletDescription {
|
||
|
final String name;
|
||
|
final WalletType type;
|
||
|
|
||
|
WalletDescription({this.name, this.type});
|
||
|
}
|