14 lines
313 B
Dart
14 lines
313 B
Dart
import 'package:pshared/models/money.dart';
|
|
|
|
class QuoteAmounts {
|
|
final Money? sourcePrincipal;
|
|
final Money? sourceDebitTotal;
|
|
final Money? destinationSettlement;
|
|
|
|
const QuoteAmounts({
|
|
required this.sourcePrincipal,
|
|
required this.sourceDebitTotal,
|
|
required this.destinationSettlement,
|
|
});
|
|
}
|