Files
metabuilder/interfaces/workspace.ts
2026-03-09 22:30:41 +00:00

21 lines
348 B
TypeScript

/**
* Workspace Domain Interfaces
* Types for projects and workspace content
*/
export interface Project {
id: string
name: string
description?: string
workspaceId: string
starred?: boolean
updatedAt: string
color?: string
workflowCount?: number
}
export interface ProjectMeta {
workflowCount: number
lastUpdated: string
}