16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
import type { ParticipantRef } from '@gridpilot/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[];
|
|
} |