feat: category

This commit is contained in:
efrilm
2025-08-17 12:50:10 +07:00
parent f84090c0e6
commit 4a4f6388d7
19 changed files with 2041 additions and 20 deletions
@@ -0,0 +1,9 @@
part of '../category.dart';
abstract class ICategoryRepository {
Future<Either<CategoryFailure, List<Category>>> get({
int page = 1,
int limit = 20,
bool isActive = true,
});
}