11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
/**
|
|
* Driver transport object
|
|
* Represents a driver as received from the API
|
|
*/
|
|
export interface DriverDto {
|
|
id: string;
|
|
name: string;
|
|
avatarUrl?: string;
|
|
iracingId?: string;
|
|
rating?: number;
|
|
} |