create project
This commit is contained in:
9
src/interface/project.ts
Normal file
9
src/interface/project.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface Project {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
project_status: "PRIVATE" | "PUBLIC" | "ARCHIVE";
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
// You can add other fields like 'members' if they are part of the response
|
||||
}
|
||||
Reference in New Issue
Block a user