payment method

This commit is contained in:
efrilm
2025-10-27 14:24:29 +07:00
parent 3135dde317
commit 9e5a6cc7ae
22 changed files with 3058 additions and 2 deletions
@@ -0,0 +1,8 @@
part of '../payment_method.dart';
abstract class IPaymentMethodRepository {
Future<Either<PaymentMethodFailure, ListPaymentMethod>> getPaymentMethods({
int page = 1,
int limit = 30,
});
}