feat: product
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
part of '../product.dart';
|
||||
|
||||
abstract class IProductRepository {
|
||||
Future<Either<ProductFailure, List<Product>>> get({
|
||||
int page = 1,
|
||||
int limit = 10,
|
||||
String? categoryId,
|
||||
String? search,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user