fix issues in core
This commit is contained in:
21
core/racing/application/dto/LeagueScheduleDTO.ts
Normal file
21
core/racing/application/dto/LeagueScheduleDTO.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user