cake_wallet/lib/entities/contact_base.dart
2022-10-12 13:09:57 -04:00

11 lines
No EOL
188 B
Dart

import 'package:cw_core/crypto_currency.dart';
abstract class ContactBase {
ContactBase(this.name, this.address, this.type);
String name;
String address;
CryptoCurrency type;
}