2025-10-26 16:09:56 +07:00

9 lines
162 B
Dart

part of '../table.dart';
abstract class ITableRepository {
Future<Either<TableFailure, ListTable>> fetchTables({
int page = 1,
int limit = 50,
});
}