Files
gridpilot.gg/packages/racing/application/dto/StandingDTO.ts
2025-12-04 15:15:24 +01:00

8 lines
150 B
TypeScript

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