export type LeagueDTO = { id: string; name: string; description: string; ownerId: string; settings: { pointsSystem: 'f1-2024' | 'indycar' | 'custom'; sessionDuration?: number; qualifyingFormat?: 'single-lap' | 'open'; customPoints?: Record; }; createdAt: string; };