Files
gridpilot.gg/apps/website/lib/view-models/ProtestViewModel.ts
2025-12-17 18:01:47 +01:00

13 lines
238 B
TypeScript

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