mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
17 lines
307 B
TypeScript
17 lines
307 B
TypeScript
import { IWorkspace } from "./";
|
|
|
|
export interface IWorkspaceInvitation {
|
|
id: string;
|
|
workspace: IWorkspace;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
email: string;
|
|
accepted: boolean;
|
|
token: string;
|
|
message: string;
|
|
responded_at: Date;
|
|
role: number;
|
|
created_by: null;
|
|
updated_by: null;
|
|
}
|