Projects

Projects group clips for organization, collaboration, and workflow management.

1interface Project {
2 uuid: string;
3 name: string;
4 description: string;
5 is_collaborative: boolean;
6 is_archived: boolean;
7 created_at: string;
8 updated_at: string;
9}