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

7 lines
213 B
TypeScript

import type { Team } from '../../domain/entities/Team';
export interface UpdateTeamCommandDTO {
teamId: string;
updates: Partial<Pick<Team, 'name' | 'tag' | 'description' | 'leagues'>>;
updatedBy: string;
}