mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
export interface IActivity {
|
|
title?: string;
|
|
owner?: number;
|
|
type?: string;
|
|
description?: string;
|
|
tags?: string;
|
|
dueDate?: number;
|
|
duration?: number;
|
|
isCalendarInvite?: boolean;
|
|
isCompleted?: boolean;
|
|
}
|