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