Files
gridpilot.gg/apps/website/lib/dtos/ProtestDto.ts
2025-12-17 18:01:47 +01:00

13 lines
253 B
TypeScript

/**
* 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;
}