10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import type { RaceProtestDto } from './RaceProtestDto';
|
|
|
|
/**
|
|
* Race protests data transfer object
|
|
* List of protests for a race
|
|
*/
|
|
export interface RaceProtestsDto {
|
|
protests: RaceProtestDto[];
|
|
driverMap: Record<string, string>;
|
|
} |