7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
/**
|
|
* Withdraw from race input data transfer object
|
|
* Input for withdrawing a driver from a race
|
|
*/
|
|
export interface WithdrawFromRaceInputDto {
|
|
driverId: string;
|
|
} |