/** * DTO: RecordTeamRaceRatingEventsDto * * Input for RecordTeamRaceRatingEventsUseCase */ export interface RecordTeamRaceRatingEventsInput { raceId: string; } export interface RecordTeamRaceRatingEventsOutput { success: boolean; raceId: string; eventsCreated: number; teamsUpdated: string[]; errors: string[]; }