11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
/**
|
|
* Driver view model
|
|
* UI representation of a driver
|
|
*/
|
|
export interface DriverViewModel {
|
|
id: string;
|
|
name: string;
|
|
avatarUrl?: string;
|
|
iracingId?: string;
|
|
rating?: number;
|
|
} |