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