21 lines
373 B
TypeScript
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;
|
|
}>;
|
|
} |