summaryrefslogtreecommitdiff
path: root/Project-Unite/NotificationHub.cs
diff options
context:
space:
mode:
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