feat: product

This commit is contained in:
efrilm
2025-08-17 14:18:10 +07:00
parent 82c0eaf5fe
commit 7d24b3296d
22 changed files with 3779 additions and 183 deletions
@@ -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,
});
}