import { GuidValue } from "@omnia/fx-models"; import { Enums } from "../.."; export interface DocumentTask { id: number; title: string; startDate?: Date; dueDate?: Date; assignedTo: string; created: Date; createdBy: string; listId: GuidValue; contentType: Enums.DocumentViewEnums.TaskContentType; status: string; percentComplete: number; predecessorsId: Array; comment: string; isCurrentResponsible: boolean; documentId: string; description: string; webUrl: string; }