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

9 lines
209 B
Dart

import 'package:pshared/models/payment/type.dart';
abstract class PaymentMethodData {
PaymentType get type;
Map<String, String>? get metadata;
}
typedef MethodMap = Map<PaymentType, PaymentMethodData?>;