/** * DTO: RecordRaceRatingEventsDto * * Input for RecordRaceRatingEventsUseCase */ export interface RecordRaceRatingEventsInput { raceId: string; } export interface RecordRaceRatingEventsOutput { success: boolean; raceId: string; eventsCreated: number; driversUpdated: string[]; errors: string[]; }