Files
gridpilot.gg/packages/racing/application/dto/CreateTeamCommandDTO.ts
2025-12-04 15:15:24 +01:00

13 lines
248 B
TypeScript

import type { Team } from '../../domain/entities/Team';
export interface CreateTeamCommandDTO {
name: string;
tag: string;
description: string;
ownerId: string;
leagues: string[];
}
export interface CreateTeamResultDTO {
team: Team;
}