11 lines
234 B
Dart
Raw Normal View History

2025-10-24 13:55:00 +07:00
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);
}