Files
gridpilot.gg/apps/website/lib/dtos/WithdrawFromRaceInputDto.ts
2025-12-17 18:01:47 +01:00

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;
}