13 lines
253 B
TypeScript
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;
|
|
} |