api client refactor
This commit is contained in:
16
apps/website/lib/dtos/RaceDetailRaceDto.ts
Normal file
16
apps/website/lib/dtos/RaceDetailRaceDto.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Race detail race data transfer object
|
||||
* Race information in race details
|
||||
*/
|
||||
export interface RaceDetailRaceDto {
|
||||
id: string;
|
||||
leagueId: string;
|
||||
track: string;
|
||||
car: string;
|
||||
scheduledAt: string;
|
||||
sessionType: string;
|
||||
status: string;
|
||||
strengthOfField: number | null;
|
||||
registeredCount?: number;
|
||||
maxParticipants?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user