Files
sendico/frontend/pshared/lib/models/payment/fees/line.dart
2025-12-11 01:13:13 +01:00

19 lines
375 B
Dart

import 'package:pshared/models/payment/money.dart';
class FeeLine {
final String? ledgerAccountRef;
final Money? amount;
final String? lineType;
final String? side;
final Map<String, String>? meta;
const FeeLine({
required this.ledgerAccountRef,
required this.amount,
required this.lineType,
required this.side,
required this.meta,
});
}