lecoffre-back/src/common/repositories/BaseRepository.ts
hugolxt ead8f43b7f
Staging implementation (#9)
The creation of a single repository is no longer relevant. Therefore, we
have to separate the front and back repo into two distinct repositories.
This PR allows to repatriate the work on dev branch
2023-03-15 14:40:23 +01:00

5 lines
132 B
TypeScript

export default abstract class BaseRepository {
protected readonly maxFetchRows = 100;
protected readonly defaultFetchRows = 50;
}