rating
This commit is contained in:
17
core/identity/application/dtos/RecordRaceRatingEventsDto.ts
Normal file
17
core/identity/application/dtos/RecordRaceRatingEventsDto.ts
Normal 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[];
|
||||
}
|
||||
Reference in New Issue
Block a user