Files
sendico/frontend/pshared/lib/models/payment/quotes.dart
2026-01-21 16:50:47 +01:00

18 lines
422 B
Dart

import 'package:pshared/models/payment/quote.dart';
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.aggregate,
required this.quotes,
required this.idempotencyKey,
});
}