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; }