An error occurred while loading the file. Please try again.
-
Lukas Maximilian Kimpel authored
Re-arrange AnswerOptions (code style) Add constructor for content Refactor ChoiceContent Refactor TextContent
Verified85a80f71
Forked from an inaccessible project.
import { Content } from './content';
import { ContentType } from './content-type';
export class TextContent extends Content {
constructor(contentId: string,
revision: string,
roomId: string,
subject: string,
body: string,
round: number) {
super(contentId,
revision,
roomId,
subject,
body,
round,
ContentType.TEXT,
new Map());
}
}