17 lines
317 B
TypeScript
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[];
|
|
} |