8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
/**
|
|
* Create team output data transfer object
|
|
* Output from creating a team
|
|
*/
|
|
export interface CreateTeamOutputDto {
|
|
teamId: string;
|
|
success: boolean;
|
|
} |