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

13 lines
232 B
Dart

import 'package:pshared/models/payment/money.dart';
class NetworkFee {
final Money? networkFee;
final String? estimationContext;
const NetworkFee({
required this.networkFee,
required this.estimationContext,
});
}