From a9b8092732e2012ffadc552052e2e070cbf380e4 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 17 Apr 2017 08:30:58 -0400 Subject: SignalR notifications --- Project-Unite/NotificationHub.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Project-Unite/NotificationHub.cs (limited to 'Project-Unite/NotificationHub.cs') 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 -- cgit v1.2.3