cake_wallet/lib/entities/contact_base.dart

11 lines
188 B
Dart
Raw Normal View History

2021-12-24 12:37:24 +00:00
import 'package:cw_core/crypto_currency.dart';
abstract class ContactBase {
2022-10-12 17:09:57 +00:00
ContactBase(this.name, this.address, this.type);
String name;
String address;
CryptoCurrency type;
}