Files
gridpilot.gg/core/racing/application/presenters/IGetTotalRacesPresenter.ts
2025-12-16 11:52:26 +01:00

11 lines
314 B
TypeScript

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