wip
This commit is contained in:
13
packages/racing/application/dto/LeagueDTO.ts
Normal file
13
packages/racing/application/dto/LeagueDTO.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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<number, number>;
|
||||
};
|
||||
createdAt: string;
|
||||
};
|
||||
Reference in New Issue
Block a user