Files
memberApp/src/vueLib/models/workspaces.ts
2026-02-19 10:49:12 +01:00

9 lines
141 B
TypeScript

export interface Workspace {
id?: number;
name: string;
uuid?: string;
description: string;
}
export type Workspaces = Workspace[];