Files
gridpilot.gg/core/racing/application/dtos/ChampionshipStandingsDTO.ts
2025-12-17 14:04:11 +01:00

16 lines
415 B
TypeScript

import type { ParticipantRef } from '@core/racing/domain/types/ParticipantRef';
export interface ChampionshipStandingsRowDTO {
participant: ParticipantRef;
position: number;
totalPoints: number;
resultsCounted: number;
resultsDropped: number;
}
export interface ChampionshipStandingsDTO {
seasonId: string;
championshipId: string;
championshipName: string;
rows: ChampionshipStandingsRowDTO[];
}