import { SafeHtml } from "@angular/platform-browser";
import { Attachment } from "./attachment.model";
export interface Answer {
questionId?: string;
answer?: any;
answerId?: string;
attachments?: Attachment[];
files?: any;
deleteFiles?: string[];
scores?: {
scoreType: string;
score: number;
}[];
isChild?: boolean;
htmlContent?: SafeHtml;
maximumPossibleScore?: number;
show?: boolean;
amountInWords?: string;
currencySymbol?: string;
required?: boolean;
answerCurrency?: string;
copiedAttachments?: string[];
}