Files
gridpilot.gg/apps/website/lib/dtos/UpdateTeamInputDto.ts
2025-12-17 18:01:47 +01:00

9 lines
189 B
TypeScript

/**
* Update team input data transfer object
* Input for updating team information
*/
export interface UpdateTeamInputDto {
name?: string;
description?: string;
logoUrl?: string;
}