Files
History-user/src/interface/project.ts
2026-04-28 13:58:34 +07:00

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
}