Files
gridpilot.gg/core/racing/application/dto/DriverDTO.ts
2025-12-15 13:46:07 +01:00

8 lines
134 B
TypeScript

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