summaryrefslogtreecommitdiff
path: root/Project-Unite/NotificationHub.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-17 08:30:58 -0400
committerMichael <[email protected]>2017-04-17 08:30:58 -0400
commita9b8092732e2012ffadc552052e2e070cbf380e4 (patch)
tree73be56bcba46bddc04bd728e932d438912276d1a /Project-Unite/NotificationHub.cs
parentc018558559b5454210d301ba693a046a07ea4cae (diff)
downloadproject-unite-a9b8092732e2012ffadc552052e2e070cbf380e4.tar.gz
project-unite-a9b8092732e2012ffadc552052e2e070cbf380e4.tar.bz2
project-unite-a9b8092732e2012ffadc552052e2e070cbf380e4.zip
SignalR notifications
Diffstat (limited to 'Project-Unite/NotificationHub.cs')
-rw-r--r--Project-Unite/NotificationHub.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Project-Unite/NotificationHub.cs b/Project-Unite/NotificationHub.cs
new file mode 100644
index 0000000..3185240
--- /dev/null
+++ b/Project-Unite/NotificationHub.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using Microsoft.AspNet.SignalR;
+
+namespace Project_Unite
+{
+ public class NotificationHub : Hub
+ {
+ public string Activate()
+ {
+ return "Monitor Activated";
+
+ }
+ }
+} \ No newline at end of file