import { EvaluationModel } from './evaluation-model.model'; import { ResourceMark } from './shared/resource-mark.model'; export interface ProfileEvaluation { id: string; profileId: string; evaluationFSRI: string; evaluations: Map; exercises: Map; exerciseIds: string[]; createdAt: Date; updatedAt: Date; createdByMark: ResourceMark; updatedByMark: ResourceMark; evaluationModel: EvaluationModel; }