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