9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
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
|
|
} |