+ 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,21 @@
import 'package:pshared/models/payment/currency_pair.dart';
import 'package:pshared/models/payment/fx/side.dart';
class FxIntent {
final CurrencyPair? pair;
final FxSide side;
final bool firm;
final int? ttlMs;
final String? preferredProvider;
final int? maxAgeMs;
const FxIntent({
this.pair,
this.side = FxSide.unspecified,
this.firm = false,
this.ttlMs,
this.preferredProvider,
this.maxAgeMs,
});
}