This commit is contained in:
Arseni
2026-01-22 00:00:42 +03:00
parent 6284625977
commit 636afe5d25
4 changed files with 14 additions and 18 deletions

View File

@@ -4,11 +4,13 @@ import 'package:pshared/models/payment/quote/aggregate.dart';
class PaymentQuotes {
final String quoteRef;
final String? idempotencyKey;
final PaymentQuoteAggregate? aggregate;
final List<PaymentQuote>? quotes;
const PaymentQuotes({
required this.quoteRef,
required this.idempotencyKey,
required this.aggregate,
required this.quotes,
});