+ quotation provider

This commit is contained in:
Stephan D
2025-12-11 01:13:13 +01:00
parent bdf766075e
commit a4481fb63d
102 changed files with 2242 additions and 246 deletions

View File

@@ -0,0 +1,18 @@
import 'package:pshared/models/payment/methods/data.dart';
import 'package:pshared/models/payment/type.dart';
class LedgerPaymentMethod implements PaymentMethodData {
@override
final PaymentType type = PaymentType.ledger;
final String ledgerAccountRef;
final String? contraLedgerAccountRef;
@override
final Map<String, String>? metadata;
const LedgerPaymentMethod({
required this.ledgerAccountRef,
this.contraLedgerAccountRef,
this.metadata,
});
}