12 lines
212 B
TypeScript
Executable File
12 lines
212 B
TypeScript
Executable File
export interface IActivity {
|
|
title?: string;
|
|
owner?: number;
|
|
type?: string;
|
|
description?: string;
|
|
tags?: string;
|
|
dueDate?: number;
|
|
duration?: number;
|
|
isCalendarInvite?: boolean;
|
|
isCompleted?: boolean;
|
|
}
|