aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-27 12:11:36 -0400
committerMichael <[email protected]>2017-05-27 12:11:36 -0400
commitfde832b35763443afdc57dc8a5d82fb3bb25009b (patch)
treeaad77133d11f5173aedb79eb59dc1a5bb3ad7757 /ShiftOS.Objects
parent97e22b35ada5898fdcb2556628f764d927cff913 (diff)
downloadshiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.tar.gz
shiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.tar.bz2
shiftos_thereturn-fde832b35763443afdc57dc8a5d82fb3bb25009b.zip
simplesrc refurbishment
Diffstat (limited to 'ShiftOS.Objects')
-rw-r--r--ShiftOS.Objects/ChatRoom.cs16
-rw-r--r--ShiftOS.Objects/ShiftOS.Objects.csproj1
2 files changed, 17 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; }
+ }
+}
diff --git a/ShiftOS.Objects/ShiftOS.Objects.csproj b/ShiftOS.Objects/ShiftOS.Objects.csproj
index 3c36d8c..9ed8c3b 100644
--- a/ShiftOS.Objects/ShiftOS.Objects.csproj
+++ b/ShiftOS.Objects/ShiftOS.Objects.csproj
@@ -45,6 +45,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="ChatRoom.cs" />
<Compile Include="ClientSave.cs" />
<Compile Include="EngineShiftnetSubscription.cs" />
<Compile Include="Job.cs" />