This commit is contained in:
2025-12-29 22:27:33 +01:00
parent 3f610c1cb6
commit 7a853d4e43
96 changed files with 14790 additions and 111 deletions

View File

@@ -0,0 +1,17 @@
/**
* DTO: RecordRaceRatingEventsDto
*
* Input for RecordRaceRatingEventsUseCase
*/
export interface RecordRaceRatingEventsInput {
raceId: string;
}
export interface RecordRaceRatingEventsOutput {
success: boolean;
raceId: string;
eventsCreated: number;
driversUpdated: string[];
errors: string[];
}