diff --git a/src/app/content.ts b/src/app/content.ts index efaeddd839bf2e6f9e58be424cc571802fcffe02..c4bf39355469556c4e2eddc2c65c67483b11a6a3 100644 --- a/src/app/content.ts +++ b/src/app/content.ts @@ -1,19 +1,19 @@ enum Format { - CHOICE, - BINARY, - SCALE, - NUMBER, - TEXT, - GRID + CHOICE, + BINARY, + SCALE, + NUMBER, + TEXT, + GRID } export class Content { - id: string; - revision: string; - roomId: string; - subject: string; - body: string; - round: number; - format: Format; - formatAttributes: Map<string, string>; + id: string; + revision: string; + roomId: string; + subject: string; + body: string; + round: number; + format: Format; + formatAttributes: Map<string, string>; }