Files
sendico/frontend/pshared/lib/models/payment/methods/data.dart
2025-11-13 15:06:15 +03:00

6 lines
113 B
Dart

import 'package:pshared/models/payment/type.dart';
abstract class PaymentMethodData {
PaymentType get type;
}