diff --git a/src/app/models/answer-text.ts b/src/app/models/answer-text.ts index b2014e2d8dcf7bcc12a50cdb48563dcef2766ff9..af8e6d09796a766aabf5238f95c9a2bd84b2ded9 100644 --- a/src/app/models/answer-text.ts +++ b/src/app/models/answer-text.ts @@ -1,3 +1,5 @@ +import { ContentType } from './content-type.enum'; + export class AnswerText { id: string; revision: string; @@ -7,4 +9,5 @@ export class AnswerText { body: string; read: string; creationTimestamp: Date; + format: ContentType; }