19 lines
375 B
Dart
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,
|
|
});
|
|
}
|