8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
export interface IsDriverRegisteredForRaceQueryParamsDTO {
|
|
raceId: string;
|
|
driverId: string;
|
|
}
|
|
|
|
export interface GetRaceRegistrationsQueryParamsDTO {
|
|
raceId: string;
|
|
} |