10 lines
260 B
TypeScript
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;
|
|
} |