import { UserIdentity } from "@omnia/fx/models"; import { Enums } from "../../../Enums"; export interface TaskItem { id: number; title: string; assignedTo: UserIdentity; created: Date; type: Enums.DocumentViewEnums.TaskContentType; status: string; percentComplete: number; documentId?: string; taskUrl: string; webUrl: string; }