Files
gridpilot.gg/core/racing/application/dto/LeagueScheduleDTO.ts
2025-12-23 11:25:08 +01:00

21 lines
373 B
TypeScript

export interface LeagueScheduleDTO {
leagueId: string;
seasonId: string;
races: Array<{
id: string;
name: string;
scheduledTime: Date;
trackId: string;
status: string;
}>;
}
export interface LeagueSchedulePreviewDTO {
leagueId: string;
preview: Array<{
id: string;
name: string;
scheduledTime: Date;
trackId: string;
}>;
}