mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
15 lines
329 B
Dart
15 lines
329 B
Dart
|
class PaymentCredential {
|
||
|
final double amount;
|
||
|
final int quantity;
|
||
|
final double totalAmount;
|
||
|
final String? userName;
|
||
|
final String fiatCurrency;
|
||
|
|
||
|
PaymentCredential({
|
||
|
required this.amount,
|
||
|
required this.quantity,
|
||
|
required this.totalAmount,
|
||
|
required this.userName,
|
||
|
required this.fiatCurrency,
|
||
|
});
|
||
|
}
|