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