Files
gridpilot.gg/core/racing/application/use-cases/FileProtestCommand.ts
2025-12-16 18:17:48 +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;
}