Files
gridpilot.gg/core/identity/application/dtos/RecordRaceRatingEventsDto.ts
2025-12-29 22:27:33 +01:00

17 lines
317 B
TypeScript

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