Files
gridpilot.gg/core/racing/application/dto/StandingDTO.ts
2025-12-15 13:46:07 +01:00

8 lines
150 B
TypeScript

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