18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
/**
|
|
* ViewData for RaceListItem
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface RaceListItemViewData {
|
|
id: string;
|
|
track: string;
|
|
car: string;
|
|
scheduledAt: string;
|
|
status: string;
|
|
leagueId: string;
|
|
leagueName: string;
|
|
strengthOfField: number | null;
|
|
isUpcoming: boolean;
|
|
isLive: boolean;
|
|
isPast: boolean;
|
|
}
|