aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/ChatRoom.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Objects/ChatRoom.cs')
-rw-r--r--ShiftOS.Objects/ChatRoom.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/ShiftOS.Objects/ChatRoom.cs b/ShiftOS.Objects/ChatRoom.cs
new file mode 100644
index 0000000..e4c89ce
--- /dev/null
+++ b/ShiftOS.Objects/ChatRoom.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ShiftOS.Objects
+{
+ public class ChatRoom
+ {
+ public string Id { get; set; }
+ public string Name { get; set; }
+
+ public List<ChatMessage> Messages { get; set; }
+ }
+}