add: team name param

This commit is contained in:
ITOH
2021-05-12 09:03:07 +02:00
parent 81f1186b23
commit c5dcde3df6

View File

@@ -8,6 +8,8 @@ export interface Team {
id: string;
/** The members of the team */
members: TeamMember[];
/** The name of the team */
name: string;
/** The user id of the current team owner */
ownerUserId: string;
}