Files
sendico/frontend/pshared/lib/models/payment/fees/network.dart
2026-01-22 01:00:55 +01:00

13 lines
224 B
Dart

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