Files
gridpilot.gg/packages/racing/application/presenters/ILeagueScoringPresetsPresenter.ts
2025-12-10 18:28:32 +01:00

10 lines
324 B
TypeScript

import type { LeagueScoringPresetDTO } from '../ports/LeagueScoringPresetProvider';
export interface LeagueScoringPresetsViewModel {
presets: LeagueScoringPresetDTO[];
totalCount: number;
}
export interface ILeagueScoringPresetsPresenter {
present(presets: LeagueScoringPresetDTO[]): LeagueScoringPresetsViewModel;
}