Files
sendico/frontend/pshared/lib/models/payment/quote/quotes.dart
Arseni 636afe5d25 Fix
2026-01-22 00:00:42 +03:00

18 lines
429 B
Dart

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