mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
10 lines
280 B
Dart
10 lines
280 B
Dart
|
import 'package:cake_wallet/anypay/any_pay_payment.dart';
|
||
|
import 'package:cake_wallet/ionia/ionia_order.dart';
|
||
|
|
||
|
class IoniaAnyPayPaymentInfo {
|
||
|
const IoniaAnyPayPaymentInfo(this.ioniaOrder, this.anyPayPayment);
|
||
|
|
||
|
final IoniaOrder ioniaOrder;
|
||
|
final AnyPayPayment anyPayPayment;
|
||
|
}
|