7 lines
213 B
TypeScript
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;
|
|
} |