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

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;
}