add new workspaces for users

This commit is contained in:
Adrian Zürcher
2026-02-19 10:49:12 +01:00
parent b726eb42dc
commit 6392877dc1
21 changed files with 744 additions and 80 deletions

View File

@@ -0,0 +1,8 @@
export interface Workspace {
id?: number;
name: string;
uuid?: string;
description: string;
}
export type Workspaces = Workspace[];