Files
gridpilot.gg/packages/racing/application/dto/RaceDTO.ts
2025-12-08 23:52:36 +01:00

14 lines
351 B
TypeScript

export type RaceDTO = {
id: string;
leagueId: string;
scheduledAt: string;
track: string;
trackId?: string;
car: string;
carId?: string;
sessionType: 'practice' | 'qualifying' | 'race';
status: 'scheduled' | 'running' | 'completed' | 'cancelled';
strengthOfField?: number;
registeredCount?: number;
maxParticipants?: number;
};