17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
/**
|
|
* Races page data race data transfer object
|
|
* Race information for the races page
|
|
*/
|
|
export interface RacesPageDataRaceDto {
|
|
id: string;
|
|
track: string;
|
|
car: string;
|
|
scheduledAt: string;
|
|
status: string;
|
|
leagueId: string;
|
|
leagueName: string;
|
|
strengthOfField: number | null;
|
|
isUpcoming: boolean;
|
|
isLive: boolean;
|
|
isPast: boolean;
|
|
} |