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

8 lines
150 B
TypeScript

export type StandingDTO = {
leagueId: string;
driverId: string;
points: number;
wins: number;
position: number;
racesCompleted: number;
};