Files
gridpilot.gg/core/racing/application/dtos/ApplyPenaltyCommand.ts
2025-12-17 14:04:11 +01:00

12 lines
263 B
TypeScript

import type { PenaltyType } from '../../domain/entities/Penalty';
export interface ApplyPenaltyCommand {
raceId: string;
driverId: string;
stewardId: string;
type: PenaltyType;
value?: number;
reason: string;
protestId?: string;
notes?: string;
}