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

8 lines
144 B
TypeScript

/**
* Driver row data transfer object
* Represents a driver in a table row
*/
export interface DriverRowDto {
id: string;
name: string;
}