mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
21 lines
348 B
TypeScript
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
|
|
}
|