We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0668dcc commit 7de1b06Copy full SHA for 7de1b06
apps/frontend/src/features/workspace/model/workspaceTypes.ts
@@ -0,0 +1,28 @@
1
+export interface Workspace {
2
+ workspaceId: string;
3
+ title: string;
4
+ description: string;
5
+ thumbnailUrl: string;
6
+ role: "owner" | "guest";
7
+}
8
+
9
+export interface CreateWorkSpaceResquest {
10
11
12
+ visibility: "private" | "public";
13
14
15
16
+export interface CreateWorkSpaceResponse {
17
+ message: string;
18
19
20
21
+export interface RemoveWorkSpaceResponse {
22
23
24
25
+export interface GetUserWorkspaceResponse {
26
27
+ workspaces: Workspace[];
28
0 commit comments