import type { Presenter } from '@core/shared/presentation/Presenter'; export interface GetTotalRacesViewModel { totalRaces: number; } export interface GetTotalRacesResultDTO { totalRaces: number; } export interface IGetTotalRacesPresenter extends Presenter {}