2025-10-26 22:57:22 +07:00

9 lines
174 B
Dart

part of '../customer.dart';
abstract class ICustomerRepository {
Future<Either<CustomerFailure, ListCustomer>> getCustomer({
int page = 1,
int limit = 10,
});
}