mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
13 lines
258 B
TypeScript
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;
|
|
}
|