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