Files
gridpilot.gg/apps/website/lib/dtos/RaceWithSOFDto.ts
2025-12-17 18:01:47 +01:00

9 lines
194 B
TypeScript

/**
* Race with strength of field data transfer object
* Race information including SOF
*/
export interface RaceWithSOFDto {
id: string;
track: string;
strengthOfField: number | null;
}