9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
export type ResultDTO = {
|
|
id: string;
|
|
raceId: string;
|
|
driverId: string;
|
|
position: number;
|
|
fastestLap: number;
|
|
incidents: number;
|
|
startPosition: number;
|
|
}; |