import type { PenaltyTypeDto } from './PenaltyTypeDto'; /** * Penalty data structure * Used when creating or updating penalties */ export interface PenaltyDataDto { driverId: string; type: PenaltyTypeDto; value?: number; }