mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
379 B
TypeScript
18 lines
379 B
TypeScript
import type { IWorkspace } from "./";
|
|
|
|
export interface IProject {
|
|
id: string;
|
|
workspace: IWorkspace | string;
|
|
default_assignee: IUser | string | null;
|
|
project_lead: IUser | string | null;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
name: string;
|
|
description: string;
|
|
network: number;
|
|
identifier: string;
|
|
slug: string;
|
|
created_by: string;
|
|
updated_by: string;
|
|
}
|