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

15 lines
290 B
TypeScript

/**
* Race protest data transfer object
* Represents a protest filed for a race
*/
export interface RaceProtestDto {
id: string;
protestingDriverId: string;
accusedDriverId: string;
incident: {
lap: number;
description: string;
};
status: string;
filedAt: string;
}