/** * Protest view model * Represents a race protest */ export interface ProtestViewModel { id: string; raceId: string; complainantId: string; defendantId: string; description: string; status: string; createdAt: string; }