feat: add member list to workspace

This commit is contained in:
steven
2022-10-03 23:30:51 +08:00
parent 887e757c39
commit 922f8e6f95
5 changed files with 48 additions and 6 deletions

View File

@@ -12,6 +12,9 @@ type Workspace struct {
// Domain specific fields
Name string `json:"name"`
Description string `json:"description"`
// Related fields
WorkspaceUserList []*WorkspaceUser `json:"workspaceUserList"`
}
type WorkspaceCreate struct {