Files
gridpilot.gg/core/racing/application/dtos/CreateTeamCommandDTO.ts
2025-12-17 14:04:11 +01:00

7 lines
135 B
TypeScript

export interface CreateTeamCommandDTO {
name: string;
tag: string;
description: string;
ownerId: string;
leagues: string[];
}