import { ProjectDocumentType } from '../../enum/project-document-type.enum'; import { IProject } from './project.model'; export interface IProjectDocument { id?: string; isActive: boolean; type: ProjectDocumentType; name: string; externalId: string; thumbnailId: string; thumbnailPublicAccessId: string; publicAccessId: string; checksum: string; mimeType: string; sizeOctet: number; projectId: string; updatedAt?: Date; createdAt?: Date; project: IProject; }