9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
export interface Workspace {
|
|
id?: number;
|
|
name: string;
|
|
uuid?: string;
|
|
description: string;
|
|
}
|
|
|
|
export type Workspaces = Workspace[];
|