16 lines
357 B
Dart
16 lines
357 B
Dart
import 'package:pshared/models/payment/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,
|
|
});
|
|
}
|