Project-Unite/Project-Unite/NotificationHub.cs
2017-04-17 09:07:41 -04:00

17 lines
No EOL
310 B
C#

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 SendMessage(string message)
{
return message;
}
}
}