Files
gridpilot.gg/core/racing/application/dtos/DriverDTO.ts
2025-12-17 14:04:11 +01:00

8 lines
134 B
TypeScript

export type DriverDTO = {
id: string;
iracingId: string;
name: string;
country: string;
bio?: string;
joinedAt: string;
};