6 lines
113 B
Dart
6 lines
113 B
Dart
import 'package:pshared/models/payment/type.dart';
|
|
|
|
|
|
abstract class PaymentMethodData {
|
|
PaymentType get type;
|
|
} |