Files
gridpilot.gg/core/racing/application/dto/FileProtestCommand.ts
2025-12-16 21:44:20 +01:00

10 lines
260 B
TypeScript

import type { ProtestIncident } from '../../domain/entities/Protest';
export interface FileProtestCommand {
raceId: string;
protestingDriverId: string;
accusedDriverId: string;
incident: ProtestIncident;
comment?: string;
proofVideoUrl?: string;
}