11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
/**
|
|
* Import race results summary data transfer object
|
|
* Summary of race results import operation
|
|
*/
|
|
export interface ImportRaceResultsSummaryDto {
|
|
success: boolean;
|
|
raceId: string;
|
|
driversProcessed: number;
|
|
resultsRecorded: number;
|
|
errors?: string[];
|
|
} |