14 lines
293 B
Dart
14 lines
293 B
Dart
import 'package:pshared/models/payment/quote/quote.dart';
|
|
|
|
class PaymentQuotes {
|
|
final String quoteRef;
|
|
final String? idempotencyKey;
|
|
final List<PaymentQuote>? items;
|
|
|
|
const PaymentQuotes({
|
|
required this.quoteRef,
|
|
required this.idempotencyKey,
|
|
required this.items,
|
|
});
|
|
}
|