Files
gridpilot.gg/core/racing/application/presenters/IGetTotalRacesPresenter.ts
2025-12-16 10:50:15 +01:00

11 lines
319 B
TypeScript

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