/** * Protest data transfer object * Represents a protest filed in a race */ export interface ProtestDto { id: string; raceId: string; complainantId: string; defendantId: string; description: string; status: string; createdAt: string; }