Files
gridpilot.gg/packages/racing/application/dto/ChampionshipStandingsDTO.ts
2025-12-04 23:31:55 +01:00

16 lines
428 B
TypeScript

import type { ParticipantRef } from '@gridpilot/racing/domain/value-objects/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[];
}