api client refactor
This commit is contained in:
13
apps/website/lib/dtos/ImportResultRowDto.ts
Normal file
13
apps/website/lib/dtos/ImportResultRowDto.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Import result row data transfer object
|
||||
* Represents a row in imported race results
|
||||
*/
|
||||
export interface ImportResultRowDto {
|
||||
id: string;
|
||||
raceId: string;
|
||||
driverId: string;
|
||||
position: number;
|
||||
fastestLap: number;
|
||||
incidents: number;
|
||||
startPosition: number;
|
||||
}
|
||||
Reference in New Issue
Block a user