CakeWallet/lib/entities/contact_base.dart

11 lines
188 B
Dart
Raw Normal View History

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