refactor
This commit is contained in:
7
core/racing/application/dtos/UpdateTeamCommandDTO.ts
Normal file
7
core/racing/application/dtos/UpdateTeamCommandDTO.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { Team } from '../../domain/entities/Team';
|
||||
|
||||
export interface UpdateTeamCommandDTO {
|
||||
teamId: string;
|
||||
updates: Partial<Pick<Team, 'name' | 'tag' | 'description' | 'leagues'>>;
|
||||
updatedBy: string;
|
||||
}
|
||||
Reference in New Issue
Block a user