Files
gridpilot.gg/core/racing/application/dto/StandingDTO.ts
2025-12-23 11:25:08 +01:00

10 lines
176 B
TypeScript

export interface StandingDTO {
id: string;
leagueId: string;
driverId: string;
position: number;
points: number;
races: number;
wins: number;
podiums: number;
}