From 49c0306d2c468079983ec9a0a299cf483f81eab1 Mon Sep 17 00:00:00 2001
From: Thomas Lenz <Thomas.Lenz@mni.thm.de>
Date: Tue, 6 Mar 2018 12:15:49 +0100
Subject: [PATCH] Add room model

---
 src/app/room.ts | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 src/app/room.ts

diff --git a/src/app/room.ts b/src/app/room.ts
new file mode 100644
index 000000000..c26bda393
--- /dev/null
+++ b/src/app/room.ts
@@ -0,0 +1,9 @@
+export class Room {
+  id: string;
+  revision: string;
+  shortId: string;
+  abbreviation: string;
+  name: string;
+  description: string;
+  closed: boolean;
+}
-- 
GitLab