9 lines
174 B
Dart
Raw Normal View History

2025-10-26 22:57:22 +07:00
part of '../customer.dart';
abstract class ICustomerRepository {
Future<Either<CustomerFailure, ListCustomer>> getCustomer({
int page = 1,
int limit = 10,
});
}