Files
best-choice/shared/models/project.d.ts
T
2025-10-14 13:30:44 +03:00

13 lines
258 B
TypeScript

export type ProjectStatus = 'active' | 'archived';
export interface Project {
id: string;
name: string;
description: string | null;
status: ProjectStatus;
attributes: string[];
priorityRules: unknown;
createdAt: string;
updatedAt: string;
}