/** * Race detail race data transfer object * Race information in race details */ export interface RaceDetailRaceDto { id: string; leagueId: string; track: string; car: string; scheduledAt: string; sessionType: string; status: string; strengthOfField: number | null; registeredCount?: number; maxParticipants?: number; }