mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
22 lines
430 B
Dart
22 lines
430 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
|
||
|
class AnonPayRequest {
|
||
|
CryptoCurrency cryptoCurrency;
|
||
|
String address;
|
||
|
String name;
|
||
|
String? amount;
|
||
|
String email;
|
||
|
String description;
|
||
|
String? fiatEquivalent;
|
||
|
|
||
|
AnonPayRequest({
|
||
|
required this.cryptoCurrency,
|
||
|
required this.address,
|
||
|
required this.name,
|
||
|
required this.email,
|
||
|
this.amount,
|
||
|
required this.description,
|
||
|
this.fiatEquivalent,
|
||
|
});
|
||
|
}
|