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

11 lines
232 B
TypeScript

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