Files
gridpilot.gg/packages/racing/application/dto/DriverDTO.ts
2025-12-04 15:15:24 +01:00

8 lines
134 B
TypeScript

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