9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
/**
|
|
* Driver registration status data transfer object
|
|
* Represents a driver's registration status for a race
|
|
*/
|
|
export interface DriverRegistrationStatusDto {
|
|
isRegistered: boolean;
|
|
raceId: string;
|
|
driverId: string;
|
|
} |