Files
sendico/frontend/pshared/lib/models/payment/quote/quotes.dart
2026-01-21 21:52:36 +03:00

16 lines
363 B
Dart

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