import { ProjectPresentationType } from '../../enum/project-presentation-type.enum'; import { IProject } from './project.model'; export interface IProjectPresentation { id?: string; type: ProjectPresentationType; content: string; customCss?: string; projectId: string; updatedAt?: Date; createdAt?: Date; project?: IProject; }