9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
/**
|
|
* Create team input data transfer object
|
|
* Input for creating a new team
|
|
*/
|
|
export interface CreateTeamInputDto {
|
|
name: string;
|
|
description?: string;
|
|
ownerId: string;
|
|
} |