current outlet

This commit is contained in:
efrilm
2025-10-24 13:55:00 +07:00
parent 97c03bcf96
commit 4dbdcadeaf
27 changed files with 2201 additions and 11 deletions
@@ -0,0 +1,10 @@
part of '../outlet.dart';
abstract class IOutletRepository {
Future<Either<OutletFailure, List<Outlet>>> getOutlets({
int page = 1,
int limit = 10,
});
Future<Either<OutletFailure, Outlet>> getOutletById(String id);
}